chore: make all systems generate no man cache
This commit is contained in:
parent
f0df5cf1a7
commit
d7c231b017
4 changed files with 19 additions and 10 deletions
|
@ -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")
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -77,10 +77,7 @@
|
|||
};
|
||||
media.enableAll = true;
|
||||
};
|
||||
documentation = {
|
||||
doc.enable = false;
|
||||
man.generateCaches = false;
|
||||
};
|
||||
|
||||
services = {
|
||||
displayManager.sddm.enable = true;
|
||||
dbus.enable = true;
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
{
|
||||
imports = [ ./system.nix ];
|
||||
imports = [
|
||||
./system.nix
|
||||
./documentation.nix
|
||||
];
|
||||
}
|
||||
|
|
6
modules/commons/documentation.nix
Normal file
6
modules/commons/documentation.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
documentation = {
|
||||
doc.enable = false;
|
||||
man.generateCaches = false;
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue