mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
41 lines
688 B
Nix
41 lines
688 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
./../../user/users.nix
|
|
|
|
./../../modules/common.nix
|
|
|
|
./../../modules/hardware/xremap.nix
|
|
./../../modules/hardware/boot.nix
|
|
|
|
./../../modules/graphics/workstation.nix
|
|
|
|
./../../modules/laptop/powersave.nix
|
|
./../../modules/laptop/battery.nix
|
|
|
|
./../../modules/services/webdav.nix.nix
|
|
./../../modules/services/scanning.nix.nix
|
|
];
|
|
|
|
networking.hostName = "thinix";
|
|
batMode = "double";
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
pinentryPackage = with pkgs; pinentry-all;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
swapDevices = [
|
|
{
|
|
device = "/swapfile";
|
|
size = 4096;
|
|
}
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|