Files
nixos/hosts/thinix-thinkpad/configuration.nix
2025-11-01 23:13:42 +01:00

33 lines
640 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./../../user/users.nix
./../../modules/essential.nix
./../../modules/common/sops.nix
./../../modules/hardware/xremap.nix
./../../modules/hardware/boot.nix
./../../modules/graphics/workstation.nix
./../../modules/graphics/grayscale.nix
./../../modules/laptop/powersave.nix
./../../modules/laptop/battery.nix
./../../modules/services/printer.nix
];
networking.hostName = "thinix";
batMode = "double";
swapDevices = [{
device = "/swapfile";
size = 4096;
}];
system.stateVersion = "24.11"; # Dont change this
}