🚀 add keyring service

dev-docs
Moritz Böhme 2022-01-21 22:03:23 +01:00
parent 5ae17614de
commit a552ecf755
2 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@
./dunst
./jupyter.nix
./kdeconnect.nix
./keyring.nix
./picom.nix
];

View File

@ -0,0 +1,6 @@
{ config, lib, pkgs, ... }:
{
services.gnome.gnome-keyring.enable = true;
programs.seahorse.enable = true;
}