aboutsummaryrefslogtreecommitdiff
path: root/machines/iso.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/iso.nix')
-rw-r--r--machines/iso.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/machines/iso.nix b/machines/iso.nix
index a636508..4d54054 100644
--- a/machines/iso.nix
+++ b/machines/iso.nix
@@ -1,11 +1,12 @@
-{ modulesPath, ... }:
+{ adminUser, 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
+ ../profiles/users/admin-user.nix
+ ../profiles/users/home-manager.nix
];
boot.loader.grub.efiSupport = true;
@@ -16,7 +17,7 @@
programs.fish.enable = true;
- home-manager.users.fcuny = {
+ home-manager.users.${adminUser.name} = {
imports = [
../home/profiles/minimal.nix
];