blob: ce340299acad500f6545ed59595820601872c85d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{ config, lib, pkgs, modulesPath, ... }:
let
powerMode = "powersave";
in
{
imports = [ ];
boot = {
initrd = {
availableKernelModules = [ "xhci_pci" "usb_storage" "sd_mod" "sdhci_acpi" ];
kernelModules = [ ];
};
kernelModules = [ "kvm_intel" ];
extraModulePackages = [ ];
kernelParams = [ "net.ifnames=0" "biosdevname=0" "iomem=relaxed" ];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/71B3-0F04";
fsType = "vfat";
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/af0f88f6-d4db-471e-b5b7-2c0a1c314c23";
fsType = "btrfs";
options = [ "subvol=root compress-force=zstd noatime" ];
};
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/af0f88f6-d4db-471e-b5b7-2c0a1c314c23";
fsType = "btrfs";
options = [ "subvol=nix compress-force=zstd noatime" ];
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/d7d4ebea-7c4b-4b1b-afdf-8b39f686276e";
fsType = "btrfs";
options = [ "subvol=home compress-force=zstd" ];
};
swapDevices = [ ];
powerManagement.cpuFreqGovernor = powerMode;
services.xserver = {
videoDrivers = [ "intel" ];
# Enable touchpad support (enabled default in most desktopManager).
libinput.enable = true;
};
hardware = {
opengl = {
enable = true;
driSupport = true;
};
};
}
|