summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2021-05-14 12:46:45 +0200
committerAlan Pearce2021-05-14 12:46:45 +0200
commit634c4bd4da4f5eb1898c57c764735ec380eb011a (patch)
tree90a6a32b38fb26eb162d58a82e0278aa4d5b8973
parentf49c526f643e39a04f4026b507e89a3a9782db3e (diff)
downloadnixfiles-634c4bd4da4f5eb1898c57c764735ec380eb011a.tar.lz
nixfiles-634c4bd4da4f5eb1898c57c764735ec380eb011a.tar.zst
nixfiles-634c4bd4da4f5eb1898c57c764735ec380eb011a.zip
window-manager: "fix" default keychain unlocking
With autologin, the default keychain is not automatically unlocked.
What makes this annoying is that on an access attempt (e.g. using
SSH), the keychain is simply ignored, rather than prompting to be
unlocked.
-rw-r--r--system/settings/programs/window-manager.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/settings/programs/window-manager.nix b/system/settings/programs/window-manager.nix
index 82799adc..c3e89709 100644
--- a/system/settings/programs/window-manager.nix
+++ b/system/settings/programs/window-manager.nix
@@ -6,11 +6,11 @@
    displayManager = {
      autoLogin = {
        user = "alan";
-       enable = true;
+       enable = false;
      };
      lightdm = {
        enable = true;
-       greeter.enable = false;
+       greeter.enable = true;
        greeters.mini = {
          enable = false;
          user = "alan";