summaryrefslogtreecommitdiff
path: root/modules/cups.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2024-10-02 22:07:10 -0500
committerTim Keller <tjk@tjkeller.xyz>2024-10-02 22:07:10 -0500
commit4730b215fdc4095800fedfdf690c12fec994bb6b (patch)
tree3c746ece0089625a8093d4ae6bf1149ea903b7dc /modules/cups.nix
parent34b0bb8df42194a0ea433592e3cac27546f0af4e (diff)
downloadnixos-4730b215fdc4095800fedfdf690c12fec994bb6b.tar.xz
nixos-4730b215fdc4095800fedfdf690c12fec994bb6b.zip
more reorganizing and modularizing
Diffstat (limited to 'modules/cups.nix')
-rw-r--r--modules/cups.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/cups.nix b/modules/cups.nix
deleted file mode 100644
index 39f8434..0000000
--- a/modules/cups.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ lib, config, ... }: {
- options = {
- cups.enable = lib.mkEnableOption "enables printing";
- };
-
- config = lib.mkIf config.cups.enable {
- services.printing.enable = true;
- };
-}