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 ./modules/environment.nix
]; ];
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
}; };
algiz = inputs.nixpkgs.lib.nixosSystem { algiz = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./hosts/algiz/configuration.nix ./hosts/algiz/configuration.nix
@ -36,6 +36,6 @@
]; ];
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
}; };
};
}; };
};
} }

View file

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

View file

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