diff options
author | Tim Keller <tjkeller.xyz> | 2024-10-31 19:58:51 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-10-31 19:58:51 -0500 |
commit | d5644331a09b8eb0645b40003cb8a1281bc165d9 (patch) | |
tree | 087a0dcdcce19c182b077e85e62671921b8e8b9b /modules/root/cups.nix | |
parent | 5cd716012f0a75a9f740b90d4afe7a205dee1b3b (diff) | |
download | nixos-d5644331a09b8eb0645b40003cb8a1281bc165d9.tar.xz nixos-d5644331a09b8eb0645b40003cb8a1281bc165d9.zip |
filesystems and other
Diffstat (limited to 'modules/root/cups.nix')
-rw-r--r-- | modules/root/cups.nix | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/root/cups.nix b/modules/root/cups.nix deleted file mode 100644 index 39f8434..0000000 --- a/modules/root/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; - }; -} |