Compare commits

...

2 commits

Author SHA1 Message Date
Geoffrey Frogeye 16f5a0a9a5
Merge remote-tracking branch 'origin/main' 2024-01-28 12:13:58 +01:00
Geoffrey Frogeye f30abd991c
Printing support 2024-01-28 12:13:27 +01:00
2 changed files with 11 additions and 0 deletions

View file

@ -9,6 +9,7 @@
./desktop.nix
./gaming
./geoffrey.nix
./printing
./style
./wireless.nix
];

10
os/printing/default.nix Normal file
View file

@ -0,0 +1,10 @@
{ lib, config, ... }:
{
config = lib.mkIf config.services.printing.enable {
services.avahi = {
enable = true;
nssmdns = true;
openFirewall = true;
};
};
}