79 lines
2.1 KiB
Nix
79 lines
2.1 KiB
Nix
# 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")
|
||
];
|
||
|
||
boot = {
|
||
initrd = {
|
||
availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||
kernelModules = [ ];
|
||
};
|
||
kernelModules = [ "kvm-intel" ];
|
||
extraModulePackages = [ ];
|
||
};
|
||
|
||
fileSystems = {
|
||
"/" = {
|
||
device = "/dev/disk/by-label/NIX-ROOT";
|
||
fsType = "ext4";
|
||
};
|
||
|
||
"/boot/efi" = {
|
||
device = "/dev/disk/by-label/NIX-BOOT";
|
||
fsType = "vfat";
|
||
};
|
||
|
||
"/nix" = {
|
||
device = "/dev/disk/by-label/NIX-STORE";
|
||
fsType = "ext4";
|
||
options = [ "noatime" ];
|
||
};
|
||
|
||
"/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"
|
||
];
|
||
};
|
||
|
||
"/mnt/Games" = {
|
||
device = "/dev/disk/by-label/Games";
|
||
fsType = "ntfs";
|
||
options = [
|
||
"uid=tdpeuter"
|
||
"gid=users"
|
||
"defaults"
|
||
];
|
||
};
|
||
};
|
||
|
||
swapDevices = [
|
||
{ device = "/dev/disk/by-label/SWAP"; }
|
||
];
|
||
|
||
# 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;
|
||
}
|