diff options
author | makefu <github@syntax-fehler.de> | 2020-04-23 16:59:07 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2020-04-23 16:59:07 +0200 |
commit | 07ab7b9519b6b5f253690101571f8fa12f20f4da (patch) | |
tree | ddb78a201c98177293c80135710b6c8b8e9025f2 /lass/3modules/xjail.nix | |
parent | 5b0d6c30d0bde6254d995a0c9b58b2ef70f16594 (diff) | |
parent | 0fbf9144d4bf93840faa49c7743e3273337bed0f (diff) |
Merge remote-tracking branch 'lass/master' into 20.03
Diffstat (limited to 'lass/3modules/xjail.nix')
-rw-r--r-- | lass/3modules/xjail.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lass/3modules/xjail.nix b/lass/3modules/xjail.nix index f6ce7ccc9..37f90ee1c 100644 --- a/lass/3modules/xjail.nix +++ b/lass/3modules/xjail.nix @@ -6,11 +6,11 @@ with import <stockholm/lib>; type = types.attrsOf (types.submodule ({ config, ...}: { options = { name = mkOption { - type = types.string; + type = types.str; default = config._module.args.name; }; user = mkOption { - type = types.string; + type = types.str; default = config.name; }; groups = mkOption { @@ -18,11 +18,11 @@ with import <stockholm/lib>; default = []; }; from = mkOption { - type = types.string; + type = types.str; default = "lass"; }; display = mkOption { - type = types.string; + type = types.str; default = toString (genid_uint31 config._module.args.name); }; dpi = mkOption { @@ -47,7 +47,7 @@ with import <stockholm/lib>; }; wm = mkOption { #TODO find type - type = types.string; + type = types.str; default = "${pkgs.writeHaskellPackage "xephyrify-xmonad" { executables.xmonad = { extra-depends = [ |