Compare commits

..

3 Commits

Author SHA1 Message Date
b9d78079d2 fix remote build 2026-01-18 18:22:00 -06:00
07b9b65382 move options 2026-01-18 17:07:58 -06:00
58bbf942d8 ssh key 2026-01-12 15:23:56 -06:00

View File

@@ -8,6 +8,8 @@
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
(import ./disko.nix { device1 = "/dev/nvme0n1"; device2 = "/dev/nvme1n1"; device3 = "/dev/sda"; })
];
config = {
@@ -52,12 +54,18 @@
};
sysconfig = {
docker.nvidia = true;
remoteBuildClient = false;
users = {
nathan = {
isSuperuser = true;
extraGroups = [ "networkmanager" ];
extraGroups = [ "networkmanager" "docker" ];
ssh.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsU69CxfQk58CvItPN426h5Alnpb60SH37wet97Vb57 nathan@laptop"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEnUhN2uHwAJF/SLRX3wlGRmfhV3zpP88JQAYB+gh8jW nathan@localhost"
];
shell = pkgs.zsh;
hashedPasswordFile = config.sops.secrets."nathan/pass".path;