System/nixos/modules/desktop.nix
2025-04-04 17:18:52 -04:00

13 lines
186 B
Nix

{
config,
lib,
pkgs,
...
}: {
security.sudo.wheelNeedsPassword = false;
environment.systemPackages = with pkgs; [
# Filesystem types
f2fs-tools
exfatprogs
];
}