Skip to content

Commit

Permalink
refac(printing): move from system defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
workflow committed Aug 20, 2024
1 parent 4787f29 commit 079f8a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 0 additions & 6 deletions system/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@

services.hardware.bolt.enable = true;

services.printing.enable = true;
services.printing.drivers = [
pkgs.gutenprint
pkgs.hplip
];

# limit the amount of logs stored in /var/log/journal
# writes to /etc/systemd/journald.conf
services.journald.extraConfig = ''
Expand Down
6 changes: 5 additions & 1 deletion system/printing.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{...}: {
{pkgs, ...}: {
services.printing.enable = true;
services.printing.drivers = [
pkgs.gutenprint
pkgs.hplip
];

services.avahi = {
enable = true;
Expand Down

0 comments on commit 079f8a5

Please sign in to comment.