summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-04-01 21:25:05 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2020-04-01 21:25:05 -0400
commitaf6d2c822c5100965d90754fab29fa45c4ff6df5 (patch)
treeb3d79eb7df3ffac998af6ee5419795b02c3785c9
parent88380453337205a65c220f68f8fed3ae1001d9f1 (diff)
downloadnixpkgs-af6d2c822c5100965d90754fab29fa45c4ff6df5.tar
nixpkgs-af6d2c822c5100965d90754fab29fa45c4ff6df5.tar.gz
nixpkgs-af6d2c822c5100965d90754fab29fa45c4ff6df5.tar.bz2
nixpkgs-af6d2c822c5100965d90754fab29fa45c4ff6df5.tar.lz
nixpkgs-af6d2c822c5100965d90754fab29fa45c4ff6df5.tar.xz
nixpkgs-af6d2c822c5100965d90754fab29fa45c4ff6df5.tar.zst
nixpkgs-af6d2c822c5100965d90754fab29fa45c4ff6df5.zip
nixos/none: remove
This windowManager and desktopManager doesn't even have
an option to use it. git history suggests to me that there's no way anyone
finds this useful anymore.
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/services/x11/desktop-managers/default.nix2
-rw-r--r--nixos/modules/services/x11/desktop-managers/none.nix7
-rw-r--r--nixos/modules/services/x11/window-managers/default.nix2
-rw-r--r--nixos/modules/services/x11/window-managers/none.nix12
5 files changed, 2 insertions, 22 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 59355aa666f..8cb11e8cd6a 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -906,7 +906,6 @@
   ./services/x11/window-managers/icewm.nix
   ./services/x11/window-managers/bspwm.nix
   ./services/x11/window-managers/metacity.nix
-  ./services/x11/window-managers/none.nix
   ./services/x11/window-managers/twm.nix
   ./services/x11/window-managers/windowlab.nix
   ./services/x11/window-managers/wmii.nix
diff --git a/nixos/modules/services/x11/desktop-managers/default.nix b/nixos/modules/services/x11/desktop-managers/default.nix
index ea6aac9f6c9..981ab26cf02 100644
--- a/nixos/modules/services/x11/desktop-managers/default.nix
+++ b/nixos/modules/services/x11/desktop-managers/default.nix
@@ -18,7 +18,7 @@ in
   # determines the default: later modules (if enabled) are preferred.
   # E.g., if Plasma 5 is enabled, it supersedes xterm.
   imports = [
-    ./none.nix ./xterm.nix ./xfce.nix ./plasma5.nix ./lumina.nix
+    ./xterm.nix ./xfce.nix ./plasma5.nix ./lumina.nix
     ./lxqt.nix ./enlightenment.nix ./gnome3.nix ./kodi.nix ./maxx.nix
     ./mate.nix ./pantheon.nix ./surf-display.nix ./cde.nix
   ];
diff --git a/nixos/modules/services/x11/desktop-managers/none.nix b/nixos/modules/services/x11/desktop-managers/none.nix
deleted file mode 100644
index af7a376ae02..00000000000
--- a/nixos/modules/services/x11/desktop-managers/none.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  services.xserver.desktopManager.session =
-    [ { name = "none";
-        start = "";
-      }
-    ];
-}
diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix
index 04a9fc46628..b32dca52a73 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
deleted file mode 100644
index 84cf1d77077..00000000000
--- a/nixos/modules/services/x11/window-managers/none.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{
-  services = {
-    xserver = {
-      windowManager = {
-        session = [{
-          name = "none";
-          start = "";
-        }];
-      };
-    };
-  };
-}