Added some of the hardware config stuff

This commit is contained in:
Annika Merris 2024-05-18 12:25:27 -04:00
parent fc3e307d0c
commit bfba6682f6
7 changed files with 78 additions and 22 deletions

View file

@ -5,18 +5,18 @@
with inputs;
nixpkgs.lib.nixosSystem {
inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
globals
home-manager.nixosModules.home-manager
# ../../modules/common
# ../../modules/nixos
../../modules/nixos
{
# something with overlays, I don't get those yet.
# Hardware
physical = true;
# physical = true;
networking.hostName = "virt-nix";
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
@ -36,7 +36,7 @@ nixpkgs.lib.nixosSystem {
swapDevices = [ ];
networking.useDHCP = lib.mkDefault true;
networking.useDHCP = nixpkgs.lib.mkDefault true;
# TODO: identityFile = "/home/${globals.user}/.ssh/id_ed2519";
# TODO: passwordHash = nixpkgs.lib.fileContents ../../password.sha512;