summaryrefslogtreecommitdiff
path: root/modules/pc/software/services/printing.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-15 20:09:27 -0700
committerFuwn <[email protected]>2024-10-15 20:09:27 -0700
commitc81d4c89118cbb793cda31439051471290cb1200 (patch)
treed6512b2f7a16769148fe923ea245e82cc12b255b /modules/pc/software/services/printing.nix
parentlock: bump tsutsumi (diff)
downloadnixos-config-c81d4c89118cbb793cda31439051471290cb1200.tar.xz
nixos-config-c81d4c89118cbb793cda31439051471290cb1200.zip
pc: move services out of software
Diffstat (limited to 'modules/pc/software/services/printing.nix')
-rw-r--r--modules/pc/software/services/printing.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/pc/software/services/printing.nix b/modules/pc/software/services/printing.nix
deleted file mode 100644
index f7a38de..0000000
--- a/modules/pc/software/services/printing.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ pkgs, ... }:
-{
- services = {
- printing = {
- enable = true;
-
- drivers = with pkgs; [
- gutenprint
- hplip
- ];
- };
-
- avahi = {
- enable = true;
- nssmdns4 = true;
- openFirewall = true;
- };
- };
-}