Compare commits
2 Commits
f850d4ff1a
...
fcd33c7924
| Author | SHA1 | Date | |
|---|---|---|---|
| fcd33c7924 | |||
| dc6c5ed8d4 |
@@ -125,9 +125,11 @@
|
||||
};
|
||||
|
||||
iso = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inputs = inputs // {
|
||||
nathan = import ./home-manager/users/nathan;
|
||||
home-manager-config = import ./home-manager;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
@@ -179,6 +181,6 @@
|
||||
};
|
||||
};
|
||||
|
||||
iso = self.nixosConfigurations.iso.config.system.build.images.iso;
|
||||
iso = self.nixosConfigurations.iso.config.system.build.isoImage;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,6 +28,10 @@
|
||||
];
|
||||
};
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
environment.shells = with pkgs; [ zsh bashInteractive ];
|
||||
|
||||
sysconfig = {
|
||||
host = "iso";
|
||||
graphical = true;
|
||||
@@ -35,6 +39,9 @@
|
||||
nathan = {
|
||||
extraGroups = [ "wheel" "networkmanager" ];
|
||||
shell = pkgs.zsh;
|
||||
sshKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsU69CxfQk58CvItPN426h5Alnpb60SH37wet97Vb57 nathan@laptop"
|
||||
];
|
||||
home-manager = {
|
||||
enable = true;
|
||||
standalone = false;
|
||||
|
||||
Reference in New Issue
Block a user