diff options
author | lassulus <git@lassul.us> | 2023-09-03 12:33:03 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-09-03 12:33:03 +0200 |
commit | c15ec193d6a4210d15576340fc4f4d769c297f0c (patch) | |
tree | 8164effda0fb33b1261b218caaa13c0a60af5372 | |
parent | 62630ff3def88d169159f9228f07e39d8969f486 (diff) |
l: update default config
-rw-r--r-- | lass/2configs/default.nix | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/lass/2configs/default.nix b/lass/2configs/default.nix index 72dbfc480..6d4230c68 100644 --- a/lass/2configs/default.nix +++ b/lass/2configs/default.nix @@ -40,6 +40,7 @@ with import <stockholm/lib>; "video" "fuse" "wheel" + "tor" ]; openssh.authorizedKeys.keys = [ config.krebs.users.lass.pubkey @@ -74,6 +75,7 @@ with import <stockholm/lib>; krebs = { enable = true; build.user = config.krebs.users.lass; + ssl.trustIntermediate = true; }; nix.useSandbox = true; @@ -93,12 +95,15 @@ with import <stockholm/lib>; #stockholm deploy git + git-absorb git-preview gnumake jq + nix-output-monitor #style rxvt-unicode-unwrapped.terminfo + alacritty.terminfo #monitoring tools htop @@ -109,6 +114,7 @@ with import <stockholm/lib>; iftop tcpdump mosh + eternal-terminal sshify #stuff for dl @@ -226,13 +232,18 @@ with import <stockholm/lib>; 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 i18n.defaultLocale = mkDefault "C.UTF-8"; time.timeZone = mkDefault"Europe/Berlin"; - system.stateVersion = mkDefault "20.03"; - # disable doc usually documentation.nixos.enable = mkDefault false; } |