mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
35 lines
663 B
Nix
35 lines
663 B
Nix
{
|
|
imports = [
|
|
../../users/richie
|
|
../../common/global
|
|
../../common/optional/docker.nix
|
|
../../common/optional/ssh_decrypt.nix
|
|
../../common/optional/syncthing_base.nix
|
|
../../common/optional/zerotier.nix
|
|
./docker
|
|
./services
|
|
./hardware.nix
|
|
./networking.nix
|
|
./nvidia.nix
|
|
./programs.nix
|
|
./runners
|
|
./syncthing.nix
|
|
];
|
|
|
|
powerManagement = {
|
|
# cpuFreqGovernor = "ondemand";
|
|
# scsiLinkPolicy = "min_power";
|
|
powertop.enable = true;
|
|
};
|
|
|
|
services = {
|
|
openssh.ports = [ 629 ];
|
|
|
|
smartd.enable = true;
|
|
|
|
snapshot_manager.path = ./snapshot_config.toml;
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|