15 lines
168 B
Nix
15 lines
168 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./sudo.nix
|
|
./systemd.nix
|
|
./users.nix
|
|
];
|
|
|
|
security = {
|
|
polkit.enable = true;
|
|
rtkit.enable = true;
|
|
};
|
|
}
|