structural-rework #1

Merged
ghoscht merged 44 commits from structural-rework into main 2023-12-29 10:35:45 +01:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit bff5e90721 - Show all commits

View file

@ -31,6 +31,7 @@
../common/optional/wireshark.nix
../common/optional/gamemode.nix
../common/optional/kde-connect.nix
../common/optional/gnome-keyring.nix
];
nixpkgs = {

View file

@ -0,0 +1,12 @@
{
config,
lib,
pkgs,
vars,
...
}: let
in {
security.pam.services.${vars.user}.enableGnomeKeyring = true;
services.gnome.gnome-keyring.enable = true;
programs.seahorse.enable = true;
}