Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Split homeManager configuration for aleister

+19 -2
+19 -2
flake.nix
··· 153 153 ./host-specific/edge/configuration.nix 154 154 ]; 155 155 }; 156 - homeConfigurations."noah" = home-manager.lib.homeManagerConfiguration { 157 - #pkgs = nixpkgs.legacyPackages.aarch64-darwin; 156 + homeConfigurations."noah-aleister" = home-manager.lib.homeManagerConfiguration { 158 157 pkgs = import nixpkgs { 159 158 system = "aarch64-darwin"; 160 159 config.allowUnfree = true; ··· 168 167 extraSpecialArgs = { 169 168 unstable = import nixpkgs-unstable { 170 169 system = "aarch64-darwin"; 170 + config.allowUnfree = true; 171 + }; 172 + }; 173 + }; 174 + homeConfigurations."noah" = home-manager.lib.homeManagerConfiguration { 175 + pkgs = import nixpkgs { 176 + system = "x86_64-linux"; 177 + config.allowUnfree = true; 178 + }; 179 + # Specify your home configuration modules here, for example, 180 + # the path to your home.nix. 181 + modules = [ ./default-home.nix ]; 182 + 183 + # Optionally use extraSpecialArgs 184 + # to pass through arguments to home.nix 185 + extraSpecialArgs = { 186 + unstable = import nixpkgs-unstable { 187 + system = "x86_64-linux"; 171 188 config.allowUnfree = true; 172 189 }; 173 190 };