legacy artemis config - needs refactor

This commit is contained in:
Callum Leslie 2024-08-30 17:08:21 +01:00
parent aba3aceed8
commit 961d41b9bf
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
34 changed files with 1572 additions and 12 deletions

16
home/services/default.nix Normal file
View file

@ -0,0 +1,16 @@
{
inputs,
config,
pkgs,
...
}: {
imports = [./mako];
services = {
network-manager-applet.enable = true;
mpris-proxy.enable = true;
gpg-agent = {
enable = true;
enableSshSupport = true;
};
};
}

View file

@ -0,0 +1,11 @@
{
config,
inputs,
pkgs,
...
}: {
services.mako = {
enable = true;
defaultTimeout = 7000;
};
}