diff options
author | Leonardo Santiago <[email protected]> | 2025-05-27 10:55:45 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2025-05-27 10:55:45 -0300 |
commit | 86d5ad6d40e68fc38916fb08598ee2ac3130a1fb (patch) | |
tree | b89730c8a11bdc0625a87093356a724a332d98ad | |
parent | 112f6976e9d631b3c0b38bafbbe4519d35ceb702 (diff) |
chore: enable rust switch-to-coonfiguration, auto unlock default keyring upon boot
-rw-r--r-- | modules/basic.nix | 1 | ||||
-rw-r--r-- | modules/gnome/default.nix | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/modules/basic.nix b/modules/basic.nix index 39e50fb..f6e8360 100644 --- a/modules/basic.nix +++ b/modules/basic.nix @@ -30,6 +30,7 @@ options = "--delete-older-than 30d"; }; }; + system.switch.enableNg = true; nixpkgs = { config.allowUnfree = true; diff --git a/modules/gnome/default.nix b/modules/gnome/default.nix index bcd31c3..e6a00f0 100644 --- a/modules/gnome/default.nix +++ b/modules/gnome/default.nix @@ -68,6 +68,12 @@ gnome-browser-connector.enable = true; gnome-keyring.enable = true; }; + security.pam.services = { + gdm-autologin.enableGnomeKeyring = true; + gdm-fingerprint.enableGnomeKeyring = true; + gdm-password.enableGnomeKeyring = true; + }; + home-manager.users.leonardo.dconf.settings = { "org/gnome/desktop/background" = { picture-uri = "${../../wallpaper.png}"; |