diff options
Diffstat (limited to 'roles/desktop/default.nix')
| -rw-r--r-- | roles/desktop/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/desktop/default.nix b/roles/desktop/default.nix index f48b82c..ac6444f 100644 --- a/roles/desktop/default.nix +++ b/roles/desktop/default.nix @@ -9,6 +9,14 @@ let cfg = config.roles.desktop; in { options.roles.desktop = { enable = mkEnableOption "desktop"; + + setupCommands = mkOption { + type = types.lines; + default = ""; + description = '' + Shell commands executed just after the X server has started. + ''; + }; }; config = mkIf cfg.enable { |