diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-01-10 02:38:31 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-01-10 02:38:31 -0800 |
commit | c33674ce98a510da7266c386f8736642a0a7d6a5 (patch) | |
tree | 1ab9b8056092042cedb60965cdf7abe8257f5eac /flake.nix | |
parent | a4f505335b0fad56b1851385abcba5f7d35ec72e (diff) |
change docs and rename stuff
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,13 +28,13 @@ outputs = { nixpkgs, home-manager, nur, disko, lanzaboote, ... }@attrs: { nixosConfigurations = { - live = nixpkgs.lib.nixosSystem { + installer = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ({pkgs, modulesPath, ...}: { imports = [(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")]; }) - ./live/iso.nix + ./installer/iso.nix ]; }; |