diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-11-28 09:49:19 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-11-28 09:49:19 -0800 |
| commit | 0d82ac97c3140c8b5d85f61ce2a783ed8e4b0fb3 (patch) | |
| tree | 737cfa1ce338f5933d31539529ae1a7c424454d1 /machines/nixos/x86_64-linux/iso.nix | |
| parent | backup to the synology nas (diff) | |
| download | infra-0d82ac97c3140c8b5d85f61ce2a783ed8e4b0fb3.tar.gz | |
the VM on the synology was reinstalled
All the secrets were re-keyed.
Diffstat (limited to 'machines/nixos/x86_64-linux/iso.nix')
| -rw-r--r-- | machines/nixos/x86_64-linux/iso.nix | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/machines/nixos/x86_64-linux/iso.nix b/machines/nixos/x86_64-linux/iso.nix index e914571..89acbf7 100644 --- a/machines/nixos/x86_64-linux/iso.nix +++ b/machines/nixos/x86_64-linux/iso.nix @@ -4,18 +4,20 @@ imports = [ "${modulesPath}/installer/cd-dvd/channel.nix" "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" - { - home-manager.users.${adminUser.name} = { - imports = [ - { home.stateVersion = "25.05"; } - ]; - }; - } + ../../../profiles/home-manager.nix ]; boot.loader.grub.efiSupport = true; boot.loader.grub.efiInstallAsRemovable = true; boot.loader.grub.device = "nodev"; + home-manager = { + users.${adminUser.name} = { + imports = [ + ../../../home/profiles/minimal.nix + ]; + }; + }; + system.stateVersion = "25.05"; # Did you read the comment? } |
