sisyphus/nixos/hosts/Tibo-NixDesk/hardware-configuration.nix

70 lines
1.9 KiB
Nix
Raw Normal View History

2023-04-11 18:01:53 +02: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 + "/installer/scan/not-detected.nix")
];
2023-04-11 18:01:53 +02:00
boot = {
initrd = {
availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
kernelModules = [ ];
};
kernelModules = [ "kvm-intel" ];
extraModulePackages = [ ];
};
2023-04-11 18:01:53 +02:00
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIX-ROOT";
2023-04-11 18:01:53 +02:00
fsType = "ext4";
};
"/boot/efi" = {
device = "/dev/disk/by-label/NIX-BOOT";
2023-04-11 18:01:53 +02:00
fsType = "vfat";
};
"/nix" = {
device = "/dev/disk/by-label/NIX-STORE";
2023-09-02 17:48:59 +02:00
fsType = "ext4";
2023-10-20 22:28:37 +02:00
options = [ "noatime" ];
2023-09-02 17:48:59 +02:00
};
"/mnt/Nextcloud" = {
device = "/dev/disk/by-label/Nextcloud";
fsType = "ntfs";
};
# "/home/${config.users.users.tdpeuter.name}/Nextcloud" = {
"/home/tdpeuter/Nextcloud" = {
depends = [
"/mnt/Nextcloud"
];
device = "/mnt/Nextcloud/Nextcloud";
fsType = "none";
options = [
"bind"
];
};
};
swapDevices = [
{ device = "/dev/disk/by-label/SWAP"; }
];
2023-04-11 18:01:53 +02: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.eno1.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}