Add workstation-specific settings

This commit is contained in:
ItsDrike 2024-04-13 20:10:01 +02:00
parent fca6296841
commit 27b0d375f2
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
18 changed files with 258 additions and 9 deletions

View file

@ -0,0 +1,5 @@
{
imports = [
./misc.nix
];
}

View file

@ -0,0 +1,15 @@
{
programs = {
# allow non-root users to mount fuse filesystems with allow_other
fuse.userAllowOther = true;
# show network usage
bandwhich.enable = true;
# network inspection utility
wireshark.enable = true;
# gnome's keyring manager
seahorse.enable = true;
};
}