feat: many changes

This commit is contained in:
2025-08-01 19:48:49 +02:00
parent 7f01dc4cac
commit 3990566fe5
21 changed files with 363 additions and 170 deletions

View File

@@ -1,5 +1,22 @@
{ lib, pkgs, ... }:
let
printerFix = pkgs.writeShellApplication {
name = "printer-fix";
runtimeInputs = [ pkgs.cups ];
text = ''
lpadmin -p 'Cloonar' -E \
-v 'ipp://brn30055c566237.cloonar.multimedia/ipp/print' \
-m 'everywhere'
lpadmin -d 'epicenter.works'
'';
};
printerFixDesktopItem = pkgs.makeDesktopItem {
name = "printer-fix";
desktopName = "Printer Fix";
exec = "printer-fix";
};
in {
services.printing.enable = true;