2024-01-19 10:36:36 +00: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.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
2024-01-19 12:13:47 +00:00
|
|
|
|
[
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2024-01-19 10:36:36 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
2024-08-13 16:31:26 +00:00
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages; # until mesa fixed
|
2024-01-28 14:08:20 +00:00
|
|
|
|
boot.kernelParams = [
|
2024-02-02 12:18:38 +00:00
|
|
|
|
# Hibernation
|
|
|
|
|
"resume=UUID=fa8aaf51-b99f-4fb4-9230-8c0957d8af3f"
|
|
|
|
|
"resume_offset=5776640" # btrfs inspect-internal map-swapfile -r /var/swapfile
|
2024-01-28 14:08:20 +00:00
|
|
|
|
];
|
2024-01-19 10:36:36 +00:00
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2024-01-19 12:13:47 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/fa8aaf51-b99f-4fb4-9230-8c0957d8af3f";
|
2024-01-19 10:36:36 +00:00
|
|
|
|
fsType = "btrfs";
|
2024-01-20 12:27:27 +00:00
|
|
|
|
options = [ "subvol=root" "compress=zstd" ];
|
2024-01-19 10:36:36 +00:00
|
|
|
|
};
|
|
|
|
|
services.btrfs.autoScrub = {
|
|
|
|
|
enable = true;
|
|
|
|
|
interval = "monthly";
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-19 12:13:47 +00:00
|
|
|
|
common.linux.luksDevices."cryptroot" = "/dev/disk/by-uuid/94226aae-6d1c-401a-bfad-3aa5f371a365";
|
2024-01-19 10:36:36 +00:00
|
|
|
|
|
|
|
|
|
fileSystems."/home" =
|
2024-01-19 12:13:47 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/fa8aaf51-b99f-4fb4-9230-8c0957d8af3f";
|
2024-01-19 10:36:36 +00:00
|
|
|
|
fsType = "btrfs";
|
2024-01-20 12:27:27 +00:00
|
|
|
|
options = [ "subvol=home" "compress=zstd" ];
|
2024-01-19 10:36:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/nix" =
|
2024-01-19 12:13:47 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/fa8aaf51-b99f-4fb4-9230-8c0957d8af3f";
|
2024-01-19 10:36:36 +00:00
|
|
|
|
fsType = "btrfs";
|
2024-01-20 12:27:27 +00:00
|
|
|
|
options = [ "subvol=nix" "compress=zstd" ];
|
2024-01-19 10:36:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" =
|
2024-01-19 12:13:47 +00:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/6A0E-4D23";
|
2024-01-19 10:36:36 +00:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [
|
|
|
|
|
{ device = "/var/swapfile"; size = 32 * 1024; priority = 10; }
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# 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;
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2024-01-19 12:13:47 +00:00
|
|
|
|
environment.systemPackages = with pkgs; [ vulkan-validation-layers ];
|
2024-01-19 10:36:36 +00:00
|
|
|
|
|
|
|
|
|
# Fingerprint
|
|
|
|
|
services.fprintd.enable = true;
|
|
|
|
|
|
|
|
|
|
hardware.sensor.iio.enable = true; # Orientaion and ambient light sensors
|
|
|
|
|
}
|