summaryrefslogtreecommitdiff
path: root/os/core/greet.nix
diff options
context:
space:
mode:
Diffstat (limited to 'os/core/greet.nix')
-rw-r--r--os/core/greet.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/os/core/greet.nix b/os/core/greet.nix
index 953b017..cf814af 100644
--- a/os/core/greet.nix
+++ b/os/core/greet.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
let
cfg = config.os.core.greet;
in
@@ -24,6 +29,6 @@ in
};
security.pam.services.greetd.enableGnomeKeyring = true;
- environment.systemPackages = with pkgs; [ tuigreet ];
+ # environment.systemPackages = with pkgs; [ tuigreet ];
};
}