project-flake/servers/common/main.nix
2025-09-24 17:05:50 +07:00

29 lines
No EOL
462 B
Nix

{ config, pkgs, pkgs-unstable, ... }:
{
imports = [
./ssh.nix
./users.nix
./yggdrasil.nix
./firewall.nix
./sudo.nix
./packages.nix
];
programs.fish.enable = true;
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [ "root" "@wheel" ];
auto-optimise-store = true;
};
optimise = {
automatic = true;
dates = [ "weekly" ];
};
gc = {
automatic = true;
dates = "weekly";
};
};
}