devos/hosts/teapot.nix

65 lines
1.8 KiB
Nix
Raw Normal View History

2021-12-04 23:59:15 +01:00
{ suites, pkgs, ... }:
2021-04-06 13:37:40 +02:00
{
imports = suites.lap;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "20.09"; # Did you read the comment?
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
2021-10-03 01:40:40 +02:00
2021-04-06 13:37:40 +02:00
fileSystems."/" =
2021-04-06 20:59:09 +02:00
{
device = "/dev/disk/by-uuid/75b8df4a-8839-40cd-92ad-dc83007199f4";
2021-04-06 13:37:40 +02:00
fsType = "btrfs";
};
fileSystems."/boot" =
2021-04-06 20:59:09 +02:00
{
device = "/dev/disk/by-uuid/B940-3C52";
2021-04-06 13:37:40 +02:00
fsType = "vfat";
};
swapDevices =
2021-04-06 20:59:09 +02:00
[{ device = "/dev/disk/by-uuid/1b49df34-6db0-487a-9bb1-306ede0245b0"; }];
2021-04-06 13:37:40 +02:00
boot.kernelParams = [ "intel_pstate=no_hwp" ];
fileSystems."/".options = [ "noatime" "nodiratime" "discard" ];
2021-04-06 20:59:09 +02:00
2021-04-06 13:37:40 +02:00
boot.loader.grub = {
2021-04-06 20:59:09 +02:00
enable = true;
version = 2;
device = "nodev";
efiSupport = true;
enableCryptodisk = true;
gfxmodeEfi = "1024x768";
2021-04-06 13:37:40 +02:00
};
boot.loader.efi.efiSysMountPoint = "/boot";
boot.initrd.luks.devices = {
2021-04-06 20:59:09 +02:00
root = {
device = "/dev/disk/by-uuid/d51c0e1d-7b44-4011-bb8c-8773df2ca890";
preLVM = true;
};
2021-04-06 13:37:40 +02:00
};
2021-12-04 23:59:15 +01:00
hardware.opengl.extraPackages = with pkgs; [
intel-ocl
intel-compute-runtime
];
2021-04-06 13:37:40 +02:00
networking.networkmanager.enable = true;
}