diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-14 13:08:07 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-14 13:08:07 -0800 |
| commit | 05fba25e608d3d44e0785f1ddb5ab30a95129131 (patch) | |
| tree | 60a2a563002079282873afad59d296958f978fce /machines/nixos/x86_64-linux/iso.nix | |
| parent | use `just` (again) instead of custom scripts (diff) | |
| download | infra-05fba25e608d3d44e0785f1ddb5ab30a95129131.tar.gz | |
simplify path structures for machines
Diffstat (limited to 'machines/nixos/x86_64-linux/iso.nix')
| -rw-r--r-- | machines/nixos/x86_64-linux/iso.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/machines/nixos/x86_64-linux/iso.nix b/machines/nixos/x86_64-linux/iso.nix deleted file mode 100644 index fc9c4fa..0000000 --- a/machines/nixos/x86_64-linux/iso.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ modulesPath, ... }: -{ - # run `nix build .#nixosConfigurations.iso.config.system.build.isoImage` to build the image - imports = [ - "${modulesPath}/installer/cd-dvd/channel.nix" - "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" - ../../../profiles/home-manager.nix - ../../../profiles/users/fcuny.nix - ]; - - boot.loader.grub.efiSupport = true; - boot.loader.grub.efiInstallAsRemovable = true; - boot.loader.grub.device = "nodev"; - - system.stateVersion = "25.05"; # Did you read the comment? - - programs.fish.enable = true; - - home-manager.users.fcuny = { - imports = [ - ../../../home/profiles/minimal.nix - ]; - }; -} |
