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