43 lines
732 B
Nix
43 lines
732 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../users/till.nix
|
|
];
|
|
|
|
networking.networkmanager.enable = true;
|
|
users.mutableUsers = true;
|
|
time.timeZone = "Europe/Berlin";
|
|
programs.fish.enable = true;
|
|
|
|
nix = {
|
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
|
gc.automatic = true;
|
|
gc.dates = "weekly";
|
|
optimise.automatic = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dig.dnsutils
|
|
file
|
|
git
|
|
htop
|
|
killall
|
|
neovim
|
|
netutils
|
|
pwgen
|
|
tree
|
|
unzip
|
|
wget
|
|
];
|
|
|
|
services.ntp.enable = true;
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
settings.PasswordAuthentication = false;
|
|
settings.PermitRootLogin = "no";
|
|
};
|
|
|
|
system.stateVersion = "22.11";
|
|
}
|