attempt to write paperless config

This commit is contained in:
Clara Dautermann 2025-03-15 18:58:55 +01:00
parent 90fc470aa7
commit 61cfdd25e7
3 changed files with 74 additions and 1 deletions

View file

@ -3,11 +3,19 @@
time.timeZone = "Europe/Berlin";
# we want at least a possibility to download stuff, monitor activity and sudo
environment.systemPackages = with pkgs; [
wget
htop
sudo
];
# because getting a nix shell is super annoying otherwise
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
# zsh because I like it :3
programs.zsh.enable = true;