All my system configs and packages in one repo
1
fork

Configure Feed

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

flake: add nixos-generators

+43
+37
flake.lock
··· 220 220 "type": "github" 221 221 } 222 222 }, 223 + "nixlib": { 224 + "locked": { 225 + "lastModified": 1736643958, 226 + "narHash": "sha256-tmpqTSWVRJVhpvfSN9KXBvKEXplrwKnSZNAoNPf/S/s=", 227 + "owner": "nix-community", 228 + "repo": "nixpkgs.lib", 229 + "rev": "1418bc28a52126761c02dd3d89b2d8ca0f521181", 230 + "type": "github" 231 + }, 232 + "original": { 233 + "owner": "nix-community", 234 + "repo": "nixpkgs.lib", 235 + "type": "github" 236 + } 237 + }, 238 + "nixos-generators": { 239 + "inputs": { 240 + "nixlib": "nixlib", 241 + "nixpkgs": [ 242 + "nixpkgs" 243 + ] 244 + }, 245 + "locked": { 246 + "lastModified": 1751903740, 247 + "narHash": "sha256-PeSkNMvkpEvts+9DjFiop1iT2JuBpyknmBUs0Un0a4I=", 248 + "owner": "nix-community", 249 + "repo": "nixos-generators", 250 + "rev": "032decf9db65efed428afd2fa39d80f7089085eb", 251 + "type": "github" 252 + }, 253 + "original": { 254 + "owner": "nix-community", 255 + "repo": "nixos-generators", 256 + "type": "github" 257 + } 258 + }, 223 259 "nixos-hardware": { 224 260 "locked": { 225 261 "lastModified": 1751999883, ··· 271 307 "hjem": "hjem", 272 308 "hjem-rum": "hjem-rum", 273 309 "nix-index-database": "nix-index-database", 310 + "nixos-generators": "nixos-generators", 274 311 "nixos-hardware": "nixos-hardware", 275 312 "nixpkgs": "nixpkgs" 276 313 }
+5
flake.nix
··· 32 32 }; 33 33 34 34 nixos-hardware.url = "github:pluiedev/nixos-hardware/pluie/jj-nsvpsuspltqm"; 35 + 36 + nixos-generators = { 37 + url = "github:nix-community/nixos-generators"; 38 + inputs.nixpkgs.follows = "nixpkgs"; 39 + }; 35 40 }; 36 41 37 42 outputs =
+1
systems/common.nix
··· 8 8 }: 9 9 { 10 10 imports = [ 11 + inputs.nixos-generators.nixosModules.all-formats 11 12 ../users 12 13 ]; 13 14