about summary refs log tree commit diff
path: root/nixos/modules/services/x11/window-managers/ratpoison.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2015-12-04 07:38:23 -0200
committerAndersonTorres <torres.anderson.85@gmail.com>2015-12-04 07:38:23 -0200
commit2955b2fcf4c14c0563025c35fe8c98a2a5d6588a (patch)
treef33388603fefca148ae25c103de42ccbc861d8c5 /nixos/modules/services/x11/window-managers/ratpoison.nix
parent12de4d5cb3bdd703904cf75aa6ddb9b9eb8f9b68 (diff)
Getting rid of mkOption in NixOS window manager modules
Now the default way to define NixOS window manager modules is to use
mkEnableOption to describe the module itself.
In this commit, all files on nixos/modules/services/x11/window-managers
are changed.
Diffstat (limited to 'nixos/modules/services/x11/window-managers/ratpoison.nix')
-rw-r--r--nixos/modules/services/x11/window-managers/ratpoison.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/nixos/modules/services/x11/window-managers/ratpoison.nix b/nixos/modules/services/x11/window-managers/ratpoison.nix
index c203c35cd1b71..0d58481d45791 100644
--- a/nixos/modules/services/x11/window-managers/ratpoison.nix
+++ b/nixos/modules/services/x11/window-managers/ratpoison.nix
@@ -8,10 +8,7 @@ in
 {
   ###### interface
   options = {
-    services.xserver.windowManager.ratpoison.enable = mkOption {
-      default = false;
-      description = "Enable the Ratpoison window manager.";
-    };
+    services.xserver.windowManager.ratpoison.enable = mkEnableOption "ratpoison";
   };
 
   ###### implementation