This commit is contained in:
2025-08-30 10:11:07 -05:00
parent dc6c5ed8d4
commit fcd33c7924
2 changed files with 7 additions and 1 deletions

View File

@@ -125,9 +125,11 @@
}; };
iso = nixpkgs.lib.nixosSystem { iso = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { specialArgs = {
inputs = inputs // { inputs = inputs // {
nathan = import ./home-manager/users/nathan; nathan = import ./home-manager/users/nathan;
home-manager-config = import ./home-manager;
}; };
}; };
modules = [ modules = [
@@ -179,6 +181,6 @@
}; };
}; };
iso = self.nixosConfigurations.iso.config.system.build.image.iso; iso = self.nixosConfigurations.iso.config.system.build.isoImage;
}; };
} }

View File

@@ -28,6 +28,10 @@
]; ];
}; };
programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh bashInteractive ];
sysconfig = { sysconfig = {
host = "iso"; host = "iso";
graphical = true; graphical = true;