Add printing support plus some drivers.
This commit is contained in:
parent
76913a4ce4
commit
2e6e1e9d75
3 changed files with 14 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
../../roles/tailscale.nix
|
||||
../../roles/podman.nix
|
||||
../../roles/syncthing.nix
|
||||
../../roles/printing.nix
|
||||
../../roles/gnome.nix
|
||||
../../roles/flatpak.nix
|
||||
../../roles/games.nix
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
enable = true;
|
||||
nssmdns4 = true;
|
||||
nssmdns6 = true;
|
||||
openFirewall = true;
|
||||
publish = {
|
||||
enable = true;
|
||||
addresses = true;
|
||||
|
|
12
roles/printing.nix
Normal file
12
roles/printing.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.printing = {
|
||||
enable = true;
|
||||
drivers = with pkgs; [
|
||||
gutenprint
|
||||
gutenprintBin
|
||||
canon-cups-ufr2
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue