System/nixos/modules/desktop.nix
2025-04-01 20:10:37 -04:00

14 lines
188 B
Nix

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