17 lines
214 B
Nix
17 lines
214 B
Nix
#
|
|
# Screenshots
|
|
#
|
|
{
|
|
pkgs,
|
|
user,
|
|
...
|
|
}: {
|
|
services = {
|
|
# sxhkd shortcut = Printscreen button (Print)
|
|
gnome-keyring = {
|
|
enable = true;
|
|
};
|
|
};
|
|
home.packages = with pkgs; [gcr seahorse];
|
|
}
|