chore: make all systems generate no man cache

This commit is contained in:
Nydragon 2024-12-01 01:55:47 +01:00
parent f0df5cf1a7
commit d7c231b017
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 19 additions and 10 deletions

View file

@ -17,9 +17,12 @@ let
};
in
{
xdg.desktopEntries = builtins.listToAttrs [
(mkURLEntry "Paperless" "https://paperless.ccnlc.eu" "${self}/assets/favicon-paperless.png")
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
(mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.png")
];
xdg = {
userDirs.enable = true;
desktopEntries = builtins.listToAttrs [
(mkURLEntry "Paperless" "https://paperless.ccnlc.eu" "${self}/assets/favicon-paperless.png")
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
(mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.png")
];
};
}

View file

@ -77,10 +77,7 @@
};
media.enableAll = true;
};
documentation = {
doc.enable = false;
man.generateCaches = false;
};
services = {
displayManager.sddm.enable = true;
dbus.enable = true;

View file

@ -1,3 +1,6 @@
{
imports = [ ./system.nix ];
imports = [
./system.nix
./documentation.nix
];
}

View file

@ -0,0 +1,6 @@
{
documentation = {
doc.enable = false;
man.generateCaches = false;
};
}