l: update default config

This commit is contained in:
lassulus 2023-09-03 12:33:03 +02:00
parent 62630ff3de
commit c15ec193d6

View File

@ -40,6 +40,7 @@ with import <stockholm/lib>;
"video" "video"
"fuse" "fuse"
"wheel" "wheel"
"tor"
]; ];
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
config.krebs.users.lass.pubkey config.krebs.users.lass.pubkey
@ -74,6 +75,7 @@ with import <stockholm/lib>;
krebs = { krebs = {
enable = true; enable = true;
build.user = config.krebs.users.lass; build.user = config.krebs.users.lass;
ssl.trustIntermediate = true;
}; };
nix.useSandbox = true; nix.useSandbox = true;
@ -93,12 +95,15 @@ with import <stockholm/lib>;
#stockholm #stockholm
deploy deploy
git git
git-absorb
git-preview git-preview
gnumake gnumake
jq jq
nix-output-monitor
#style #style
rxvt-unicode-unwrapped.terminfo rxvt-unicode-unwrapped.terminfo
alacritty.terminfo
#monitoring tools #monitoring tools
htop htop
@ -109,6 +114,7 @@ with import <stockholm/lib>;
iftop iftop
tcpdump tcpdump
mosh mosh
eternal-terminal
sshify sshify
#stuff for dl #stuff for dl
@ -226,13 +232,18 @@ with import <stockholm/lib>;
noipv4ll noipv4ll
''; '';
networking.extraHosts = ''
10.42.0.1 styx.gg23
'';
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
# use 24:00 time format, the default got sneakily changed around 20.03 # use 24:00 time format, the default got sneakily changed around 20.03
i18n.defaultLocale = mkDefault "C.UTF-8"; i18n.defaultLocale = mkDefault "C.UTF-8";
time.timeZone = mkDefault"Europe/Berlin"; time.timeZone = mkDefault"Europe/Berlin";
system.stateVersion = mkDefault "20.03";
# disable doc usually # disable doc usually
documentation.nixos.enable = mkDefault false; documentation.nixos.enable = mkDefault false;
} }