Add gnome-keyring for keyring support

This commit is contained in:
Nina Chloé Kassandra Reiß
2026-03-01 12:12:44 +01:00
parent 356fef695a
commit 7f3f6dd12f
2 changed files with 19 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ in
imports = [
./file-system.nix
./media.nix
./security/keyring.nix
];
environment.systemPackages = with pkgs; [

View File

@@ -0,0 +1,18 @@
{ pkgs, lib, ... }:
let
profile = import ../profile.nix;
in
{
imports = [ ];
environment.systemPackages = with pkgs; [
seahorse
];
environment.variables = {
};
services.gnome.gnome-keyring.enable = true;
security.pam.services.login.enableGnomeKeyring = true;
}