mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 11:39:19 +00:00
13 lines
292 B
Nix
13 lines
292 B
Nix
{pkgs, ...}: {
|
|
imports = [./mako ./kanshi];
|
|
services = {
|
|
network-manager-applet.enable = true;
|
|
mpris-proxy.enable = true;
|
|
wpaperd.enable = true;
|
|
gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
pinentry.package = pkgs.pinentry-gnome3;
|
|
};
|
|
};
|
|
}
|