revert Add gnome-keyring for keyring support
This commit is contained in:
2026-03-01 12:52:30 +01:00
parent 0e09603af7
commit 6272ac29f2
2 changed files with 0 additions and 19 deletions

View File

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

View File

@@ -1,18 +0,0 @@
{ 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;
}