2020-05-09 01:17:35 +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")
|
|
|
|
|
];
|
|
|
|
|
|
2022-10-04 09:51:45 +02:00
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "rtsx_pci_sdmmc" ];
|
2020-05-09 01:17:35 +02:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
|
|
|
|
{ device = "syscea/stateful/root";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
|
|
|
|
{ device = "syscea/ephemeral/nix";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-04 09:51:45 +02:00
|
|
|
|
fileSystems."/ugent" =
|
|
|
|
|
{ device = "systemd-1";
|
|
|
|
|
fsType = "autofs";
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-30 13:24:40 +01:00
|
|
|
|
fileSystems."/tmp" =
|
|
|
|
|
{ device = "syscea/ephemeral/tmp";
|
|
|
|
|
fsType = "zfs";
|
2020-12-01 16:09:12 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-08-13 10:48:33 +02:00
|
|
|
|
fileSystems."/home/coolneng" =
|
2021-02-17 01:28:48 +01:00
|
|
|
|
{ device = "syscea/stateful/home";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/home/coolneng/Downloads" =
|
|
|
|
|
{ device = "syscea/stateful/home/downloads";
|
2020-05-09 01:17:35 +02:00
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2021-08-13 10:48:33 +02:00
|
|
|
|
{ device = "/dev/disk/by-uuid/4851-6B40";
|
2020-05-09 01:17:35 +02:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices =
|
2022-10-04 09:51:45 +02:00
|
|
|
|
[ { device = "/dev/disk/by-uuid/1f0ea09c-e655-4a9f-83d4-9d396de01720"; }
|
2020-05-09 01:17:35 +02:00
|
|
|
|
];
|
|
|
|
|
|
2022-10-04 09:51:45 +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.enp0s31f6.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.wg0.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
2020-05-09 01:17:35 +02:00
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
2022-10-04 09:51:45 +02:00
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2020-05-09 01:17:35 +02:00
|
|
|
|
}
|