blob: 824d88cc330187dc55d7a6132feb05ef267287c4 (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
{
inputs,
config,
lib,
pkgs,
...
}: {
imports = [
inputs.hardware.nixosModules.common-cpu-amd
inputs.hardware.nixosModules.common-cpu-amd-pstate
inputs.hardware.nixosModules.common-gpu-amd
inputs.hardware.nixosModules.common-pc-laptop
inputs.hardware.nixosModules.common-pc-laptop-acpi_call
inputs.hardware.nixosModules.common-pc-laptop-ssd
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
hardware.enableRedistributableFirmware = lib.mkDefault true;
boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod"];
boot.initrd.kernelModules = ["synaptics_usb"];
boot.kernelModules = ["kvm-amd"];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.extraModulePackages = [];
# disable Scatter/Gather APU recently enabled by default,
# which results in white screen after display reconfiguration
boot.kernelParams = [
"amdgpu.sg_display=0"
"amd_pstate=active"
];
fileSystems."/" = {
device = "none";
fsType = "tmpfs";
options = ["defaults" "size=8G" "mode=755"];
};
fileSystems."/boot" = {
device = "/dev/disk/by-partlabel/disk-main-ESP";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
};
boot.initrd.luks.devices."crypted".device = "/dev/disk/by-partlabel/disk-main-luks";
fileSystems."/nix" = {
device = "/dev/mapper/crypted";
fsType = "btrfs";
options = ["subvol=nix" "compress=zstd" "noatime"];
};
fileSystems."/persist" = {
device = "/dev/mapper/crypted";
fsType = "btrfs";
options = ["subvol=persist" "compress=zstd" "noatime"];
neededForBoot = true;
};
fileSystems."/swap" = {
device = "/dev/mapper/crypted";
fsType = "btrfs";
options = ["subvol=swap" "noatime"];
};
fileSystems."/tmp" = {
device = "/dev/mapper/crypted";
fsType = "btrfs";
options = ["subvol=tmp" "noatime"];
};
fileSystems."/var/log" = {
device = "/dev/mapper/crypted";
fsType = "btrfs";
options = ["subvol=log" "compress=zstd" "noatime"];
neededForBoot = true;
};
boot.tmp.cleanOnBoot = true;
swapDevices = [{device = "/swap/swapfile";}];
# 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.wlp1s0.useDHCP = lib.mkDefault true;
services.xserver = {
videoDrivers = ["amdgpu"];
};
# sound = {
# enable = lib.mkForce false;
# mediaKeys.enable = true;
# };
# hardware.pulseaudio = {
# enable = true;
# support32Bit = true;
# };
# Fingerprint
services.fprintd = {
enable = true;
};
systemd.services.fprintd = {
wantedBy = ["multi-user.target"];
serviceConfig.Type = "simple";
};
# Bluetooth
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.printing = {
enable = true;
drivers = [pkgs.hplip];
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}
|