aboutsummaryrefslogtreecommitdiff
path: root/modules/user/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user/options.nix')
-rw-r--r--modules/user/options.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/user/options.nix b/modules/user/options.nix
index d805bf9..31f166d 100644
--- a/modules/user/options.nix
+++ b/modules/user/options.nix
@@ -1,5 +1,5 @@
{lib, ...}: let
- inherit (lib) mkOption types;
+ inherit (lib) mkEnableOption mkOption types;
in {
options = {
collinux.user = {
@@ -12,6 +12,8 @@ in {
type = types.bool;
default = true;
};
+
+ useRun0 = mkEnableOption "whether to use systemd's run0 instead of sudo-rs";
};
};
}