This commit is contained in:
Daylin Morgan 2023-05-03 16:32:17 -05:00
parent 562329f49a
commit 417696048c
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
3 changed files with 9 additions and 8 deletions

View file

@ -26,8 +26,8 @@
./modules/environment.nix
];
specialArgs = { inherit inputs; };
};
algiz = inputs.nixpkgs.lib.nixosSystem {
};
algiz = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/algiz/configuration.nix
@ -36,6 +36,6 @@
];
specialArgs = { inherit inputs; };
};
};
};
};
}

View file

@ -33,7 +33,7 @@
];
};
networking.hostName = "algiz";
networking.hostName = "algiz";
time.timeZone = "America/Chicago";
programs.zsh.enable = true;
virtualisation.docker.enable = true;
@ -92,9 +92,9 @@
boot.loader.grub.device = "/dev/vda"; # or "nodev" for efi only
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
enable = true;
enableSSHSupport = true;
};
# List services that you want to enable:

View file

@ -12,7 +12,8 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/eb6cbf1e-e4a7-4312-a1af-4f78ad9cf138";
{
device = "/dev/disk/by-uuid/eb6cbf1e-e4a7-4312-a1af-4f78ad9cf138";
fsType = "btrfs";
};