nix/module/desktop/Polkit.nix

7 lines
113 B
Nix
Raw Normal View History

2024-03-30 02:11:04 +03:00
{ pkgs, ... }: {
2024-03-29 14:06:51 +03:00
security.polkit.enable = true;
2024-03-30 02:11:04 +03:00
environment.systemPackages = with pkgs; [
polkit_gnome
];
2024-03-29 14:06:51 +03:00
}