This commit is contained in:
2025-09-23 21:22:14 +02:00
parent 7662d001f5
commit 7524ce0646
4 changed files with 38 additions and 35 deletions

View File

@@ -1,41 +1,41 @@
{ pkgs, ... }:
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
imports = [
./hardware-configuration.nix
./../../user/users.nix
./../../user/users.nix
./../../modules/essential.nix
./../../modules/common/sops.nix
./../../modules/essential.nix
./../../modules/common/sops.nix
./../../modules/hardware/xremap.nix
./../../modules/hardware/boot.nix
./../../modules/hardware/xremap.nix
./../../modules/hardware/boot.nix
./../../modules/graphics/workstation.nix
./../../modules/graphics/workstation.nix
./../../modules/laptop/powersave.nix
./../../modules/laptop/battery.nix
./../../modules/laptop/powersave.nix
./../../modules/laptop/battery.nix
./../../modules/services/webdav.nix
./../../modules/services/scanning.nix
];
./../../modules/services/webdav.nix
./../../modules/services/scanning.nix
];
networking.hostName = "thinix";
batMode = "double";
networking.hostName = "thinix";
batMode = "double";
# Cannot have this and tlp
#services.power-profiles-daemon.enable = true;
programs.gnupg.agent = {
enable = true;
pinentryPackage = with pkgs; pinentry-all;
enableSSHSupport = true;
};
programs.gnupg.agent = {
enable = true;
pinentryPackage = with pkgs; pinentry-all;
enableSSHSupport = true;
};
swapDevices = [
{
device = "/swapfile";
size = 4096;
}
];
swapDevices = [{
device = "/swapfile";
size = 4096;
}];
system.stateVersion = "24.11";
system.stateVersion = "24.11";
}