diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-04-24 21:32:57 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-04-24 21:32:57 -0400 |
| commit | cdd9494c931878d5c97e6c81c5bdb0a0f81b4364 (patch) | |
| tree | e42654b18a888cb8b53806997cfe3713b5748163 /flake.nix | |
| parent | ignore DS_Store (diff) | |
| download | nixos-cdd9494c931878d5c97e6c81c5bdb0a0f81b4364.tar.gz nixos-cdd9494c931878d5c97e6c81c5bdb0a0f81b4364.tar.bz2 nixos-cdd9494c931878d5c97e6c81c5bdb0a0f81b4364.zip | |
bluetooth
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 75 |
1 files changed, 39 insertions, 36 deletions
@@ -17,45 +17,48 @@ }; }; - outputs = { - self, - nixpkgs, - home-manager, - stylix, - nur, - ... - } @ inputs: let - lib = nixpkgs.lib; - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - config.allowUnfree = true; - overlays = [nur.overlay]; - }; - in { - nixosConfigurations = { - home = lib.nixosSystem { + outputs = + { + self, + nixpkgs, + home-manager, + stylix, + nur, + ... + }@inputs: + let + lib = nixpkgs.lib; + system = "x86_64-linux"; + pkgs = import nixpkgs { inherit system; - modules = [ - ./configuration.nix - ]; - specialArgs = { - inherit inputs; + config.allowUnfree = true; + overlays = [ nur.overlays.default ]; + }; + in + { + nixosConfigurations = { + home = lib.nixosSystem { + inherit system; + modules = [ + ./configuration.nix + ]; + specialArgs = { + inherit inputs; + }; }; }; - }; - homeConfigurations = { - andrew = home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = [ - stylix.homeModules.stylix - #nur.modules.nixos.default - ./dotfiles.nix - ./home.nix - {dotfiles.mutable = true;} - ]; - extraSpecialArgs = {inherit inputs;}; + homeConfigurations = { + andrew = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + stylix.homeModules.stylix + #nur.modules.nixos.default + ./dotfiles.nix + ./home.nix + { dotfiles.mutable = true; } + ]; + extraSpecialArgs = { inherit inputs; }; + }; }; }; - }; } |
