Compare commits
2 Commits
f850d4ff1a
...
fcd33c7924
| Author | SHA1 | Date | |
|---|---|---|---|
| fcd33c7924 | |||
| dc6c5ed8d4 |
@@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user