mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-14 16:17:17 +00:00
ItsDrike
00016063fe
Originally, I was including all role configurations for all hosts, and controlling which get applied in the role configs with a check in each file. This is a very repetetive and annoying approach. Instead, now the role directory is included manually from the hosts config for devices which meet that role, removing the role options.
15 lines
372 B
Nix
15 lines
372 B
Nix
{pkgs, ...}: {
|
|
services = {
|
|
udev.packages = with pkgs; [gnome.gnome-settings-daemon];
|
|
gnome.gnome-keyring.enable = true;
|
|
};
|
|
|
|
# seahorse is an application for managing encryption keys
|
|
# and passwords in the gnome keyring
|
|
programs.seahorse.enable = true;
|
|
|
|
xdg.portal.config.common = {
|
|
"org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
|
|
};
|
|
}
|