Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions nixos/modules/services/printing/cups-pdf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@ let
instanceSettings = name: {
freeformType =
with lib.types;
nullOr (oneOf [
int
str
path
package
]);
attrsOf (
nullOr (oneOf [
int
str
path
package
])
);
# override defaults:
# inject instance name into paths,
# also avoid conflicts between user names and special dirs
Expand Down
Loading