This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/hosts/rainbow.nix

59 lines
2.0 KiB
Nix
Raw Normal View History

2022-10-26 02:18: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.
2022-11-07 15:24:40 +01:00
{ config, lib, pkgs, modulesPath, ... }:
let btrfs_options = [ "compress=zstd:3" "noatime" ];
2022-10-31 21:11:26 +01:00
in {
2022-11-07 15:24:40 +01:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2022-10-26 02:18:53 +02:00
2022-11-07 15:24:40 +01:00
boot.initrd.availableKernelModules =
[ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
2022-10-26 02:18:53 +02:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
2022-11-07 15:24:40 +01:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/a242e1fd-6848-4504-909f-ab8b61f97c8e";
fsType = "btrfs";
options = [ "subvol=@nixos" ] ++ btrfs_options;
};
2022-10-26 02:18:53 +02:00
2022-11-07 15:24:40 +01:00
boot.initrd.luks.devices."main".device =
"/dev/disk/by-uuid/9b24d79f-e018-4d70-84a9-5a1b49a6c610";
2022-10-26 02:18:53 +02:00
2022-11-07 15:24:40 +01:00
fileSystems."/home" = {
device = "/dev/disk/by-uuid/a242e1fd-6848-4504-909f-ab8b61f97c8e";
fsType = "btrfs";
options = [ "subvol=@home" ] ++ btrfs_options;
};
2022-10-26 02:18:53 +02:00
2022-11-07 15:24:40 +01:00
fileSystems."/boot/efi" = {
device = "/dev/disk/by-uuid/DC3B-5753";
fsType = "vfat";
};
2022-10-26 02:18:53 +02:00
2022-11-07 15:24:40 +01:00
fileSystems."/swap" = {
device = "/dev/disk/by-uuid/a242e1fd-6848-4504-909f-ab8b61f97c8e";
fsType = "btrfs";
options = [ "subvol=@swap" ];
};
2022-10-26 02:18:53 +02:00
2022-10-26 20:01:55 +02:00
swapDevices = [{
device = "/swap/swapfile";
size = (1024 * 4); # RAM size + 2 GB
}];
2022-10-26 02:18: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.enp1s0.useDHCP = lib.mkDefault true;
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
2022-11-07 15:24:40 +01:00
hardware.cpu.intel.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2022-10-26 02:18:53 +02:00
networking.hostName = "rainbow"; # Define your hostname.
}