aboutsummaryrefslogtreecommitdiff
path: root/nixos/nixosModules/ly.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/nixosModules/ly.nix')
-rw-r--r--nixos/nixosModules/ly.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/nixos/nixosModules/ly.nix b/nixos/nixosModules/ly.nix
deleted file mode 100644
index c126493..0000000
--- a/nixos/nixosModules/ly.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, lib, ... }:
-
-{
- options = {
- ly.enable = lib.mkEnableOption "enable ly desktop manager";
- };
-
- config = lib.mkIf config.ly.enable {
- services.displayManager.ly = {
- enable = true;
- settings = {
- save = true;
- };
- };
- };
-}