blob: aa860495ab670ae0d7013a7337572d3c863831de (
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
|
# 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 =
[ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
fsType = "btrfs";
options = [ "subvol=nixos" ];
};
boot.initrd.luks.devices."system".device =
"/dev/disk/by-uuid/dd1b3673-ece0-49f8-bf71-8cc4e1a06634";
fileSystems."/home" = {
device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
fsType = "btrfs";
options = [ "subvol=home" ];
};
fileSystems."/.snapshots" = {
device = "/dev/disk/by-uuid/7d4e07d8-1104-4ab8-8ead-8ca28da2d344";
fsType = "btrfs";
options = [ "subvol=snapshots" ];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/7430-1C58";
fsType = "vfat";
};
swapDevices =
[{ device = "/dev/disk/by-uuid/ebcb04f3-4227-4ec3-af52-bd775ef38027"; }];
my.hardware.amd.enable = true;
# high-resolution display
hardware.video.hidpi.enable = lib.mkDefault true;
}
|