nix-config/modules/nixos/system/default.nix
Bruno BELANYI 9ddd59eac8 nixos: system: add polkit
One nice thing is that it enables the prompts when using `systemctl`,
instead of requiring `sudo`.
2023-12-14 11:23:28 +00:00

18 lines
195 B
Nix

# System-related modules
{ ... }:
{
imports = [
./boot
./docker
./documentation
./language
./nix
./packages
./podman
./polkit
./printing
./users
];
}