mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
16 lines
303 B
Nix
16 lines
303 B
Nix
{
|
|
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;
|
|
};
|
|
}
|