summary refs log tree commit diff
path: root/nixos/modules/services/x11/window-managers
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-04-02 04:07:18 -0400
committerGitHub <noreply@github.com>2020-04-02 04:07:18 -0400
commit60a17322764a687f2aab67bf1f8fe2a932ab9d20 (patch)
treebc97ff9431c0c16d67d400c1d22006ca5037e54f /nixos/modules/services/x11/window-managers
parentf75c11cfdfff3448623250e151cb47df70d4f224 (diff)
downloadnixpkgs-60a17322764a687f2aab67bf1f8fe2a932ab9d20.tar
nixpkgs-60a17322764a687f2aab67bf1f8fe2a932ab9d20.tar.gz
nixpkgs-60a17322764a687f2aab67bf1f8fe2a932ab9d20.tar.bz2
nixpkgs-60a17322764a687f2aab67bf1f8fe2a932ab9d20.tar.lz
nixpkgs-60a17322764a687f2aab67bf1f8fe2a932ab9d20.tar.xz
nixpkgs-60a17322764a687f2aab67bf1f8fe2a932ab9d20.tar.zst
nixpkgs-60a17322764a687f2aab67bf1f8fe2a932ab9d20.zip
Revert "nixos/none: remove"
Diffstat (limited to 'nixos/modules/services/x11/window-managers')
-rw-r--r--nixos/modules/services/x11/window-managers/default.nix2
-rw-r--r--nixos/modules/services/x11/window-managers/none.nix12
2 files changed, 13 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix
index b32dca52a73..04a9fc46628 100644
--- a/nixos/modules/services/x11/window-managers/default.nix
+++ b/nixos/modules/services/x11/window-managers/default.nix
@@ -35,7 +35,7 @@ in
     ./wmii.nix
     ./xmonad.nix
     ./qtile.nix
-  ];
+    ./none.nix ];
 
   options = {
 
diff --git a/nixos/modules/services/x11/window-managers/none.nix b/nixos/modules/services/x11/window-managers/none.nix
new file mode 100644
index 00000000000..84cf1d77077
--- /dev/null
+++ b/nixos/modules/services/x11/window-managers/none.nix
@@ -0,0 +1,12 @@
+{
+  services = {
+    xserver = {
+      windowManager = {
+        session = [{
+          name = "none";
+          start = "";
+        }];
+      };
+    };
+  };
+}