nixos/hosts/cloudnix/hardware-configuration.nix

62 lines
1.9 KiB
Nix
Raw Normal View History

2025-01-25 13:53:42 +00:00
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
2025-01-25 19:02:42 +00:00
{ device = "/dev/disk/by-uuid/2aec8052-68fc-4bac-9b8d-c10b9b659ad8";
2025-01-25 18:02:27 +00:00
fsType = "btrfs";
options = [ "subvol=root" ];
};
fileSystems."/.swapvol" =
2025-01-25 19:02:42 +00:00
{ device = "/dev/disk/by-uuid/2aec8052-68fc-4bac-9b8d-c10b9b659ad8";
2025-01-25 18:02:27 +00:00
fsType = "btrfs";
options = [ "subvol=swap" ];
2025-01-25 13:53:42 +00:00
};
fileSystems."/boot" =
2025-01-25 19:02:42 +00:00
{ device = "/dev/disk/by-uuid/1DE3-CACA";
2025-01-25 18:02:27 +00:00
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
fileSystems."/nix" =
2025-01-25 19:02:42 +00:00
{ device = "/dev/disk/by-uuid/2aec8052-68fc-4bac-9b8d-c10b9b659ad8";
2025-01-25 18:02:27 +00:00
fsType = "btrfs";
options = [ "subvol=nix" ];
};
fileSystems."/persist" =
2025-01-25 19:02:42 +00:00
{ device = "/dev/disk/by-uuid/2aec8052-68fc-4bac-9b8d-c10b9b659ad8";
2025-01-25 18:02:27 +00:00
fsType = "btrfs";
options = [ "subvol=persist" ];
2025-01-25 13:53:42 +00:00
};
2025-01-25 19:02:42 +00:00
swapDevices = [
{
device = "/.swapvol/swapfile";
size = 2 * 1024;
}
];
2025-01-25 13:53:42 +00:00
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}