summary refs log tree commit diff
path: root/nixos/modules/services/x11/window-managers/tinywm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/x11/window-managers/tinywm.nix')
-rw-r--r--nixos/modules/services/x11/window-managers/tinywm.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/nixos/modules/services/x11/window-managers/tinywm.nix b/nixos/modules/services/x11/window-managers/tinywm.nix
deleted file mode 100644
index 8e5d9b9170c..00000000000
--- a/nixos/modules/services/x11/window-managers/tinywm.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let
-  cfg = config.services.xserver.windowManager.tinywm;
-in
-{
-  ###### interface
-  options = {
-    services.xserver.windowManager.tinywm.enable = mkEnableOption "tinywm";
-  };
-
-  ###### implementation
-  config = mkIf cfg.enable {
-    services.xserver.windowManager.session = singleton {
-      name = "tinywm";
-      start = ''
-        ${pkgs.tinywm}/bin/tinywm &
-        waitPID=$!
-      '';
-    };
-    environment.systemPackages = [ pkgs.tinywm ];
-  };
-}