Files
athens/nix/modules/base/nixos.nix
T
2026-07-27 17:15:39 -04:00

53 lines
663 B
Nix

{ pkgs, ... }:
{
imports = [
./common.nix
../monitoring
../../users
];
documentation = {
enable = false;
};
environment.systemPackages = with pkgs; [
btop
htop
inetutils
vim
];
nix = {
gc = {
persistent = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
settings = {
auto-optimise-store = true;
trusted-users = [
"root"
"walkah"
];
};
};
programs = {
mosh.enable = true;
};
services = {
openssh.enable = true;
tailscale = {
enable = true;
};
};
system = {
stateVersion = "23.05";
};
}