Compare commits

...

2 Commits

Author SHA1 Message Date
fcd33c7924 test iso 2025-08-30 10:11:07 -05:00
dc6c5ed8d4 test iso 2025-08-30 09:40:43 -05:00
2 changed files with 10 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.images.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;
@@ -35,6 +39,9 @@
nathan = { nathan = {
extraGroups = [ "wheel" "networkmanager" ]; extraGroups = [ "wheel" "networkmanager" ];
shell = pkgs.zsh; shell = pkgs.zsh;
sshKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsU69CxfQk58CvItPN426h5Alnpb60SH37wet97Vb57 nathan@laptop"
];
home-manager = { home-manager = {
enable = true; enable = true;
standalone = false; standalone = false;