Compare commits

..

1 Commits

Author SHA1 Message Date
Nina Chloé Kassandra Reiß
7f3f6dd12f Add gnome-keyring for keyring support 2026-03-01 12:12:44 +01:00
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;
}