40 lines
605 B
Nix
40 lines
605 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nix = {
|
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
|
gc.automatic = true;
|
|
gc.dates = "weekly";
|
|
optimise.automatic = true;
|
|
};
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
users.users.till = {
|
|
isNormalUser = true;
|
|
description = "Till";
|
|
extraGroups = [
|
|
"wheel"
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dig.dnsutils
|
|
file
|
|
git
|
|
htop
|
|
killall
|
|
neovim
|
|
pwgen
|
|
tree
|
|
unzip
|
|
wget
|
|
];
|
|
|
|
services = {
|
|
ntp.enable = true;
|
|
openssh.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "22.11";
|
|
}
|