diff options
author | Adrian Kummerlaender | 2023-12-11 10:25:58 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2023-12-11 10:25:58 +0100 |
commit | ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65 (patch) | |
tree | e187570ee851e78eb029dbb5ec9e59873b3f0b20 /host | |
parent | 3884275613c1cf84db36155947a95cc72b001891 (diff) | |
download | nixos_system-ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65.tar nixos_system-ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65.tar.gz nixos_system-ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65.tar.bz2 nixos_system-ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65.tar.lz nixos_system-ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65.tar.xz nixos_system-ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65.tar.zst nixos_system-ca94e4afca64f9dc3c2aafbafc9c4ff6cd353a65.zip |
atlas: Enable printing
Diffstat (limited to 'host')
-rw-r--r-- | host/atlas.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/host/atlas.nix b/host/atlas.nix index 4771aa4..1221a98 100644 --- a/host/atlas.nix +++ b/host/atlas.nix @@ -54,6 +54,12 @@ enable = true; interfaces."wg0".allowedTCPPorts = [ 5900 8080 8888 ]; }; + + services.printing = { + enable = true; + drivers = [ pkgs.hplip ]; + }; + services.gitlab-runner = { enable = true; services = { |