Setup roles as modules and switch to sway

This commit is contained in:
2024-09-08 13:49:28 -07:00
parent f22ff0e286
commit 692cebc839
14 changed files with 307 additions and 471 deletions

View File

@@ -1,4 +1,15 @@
{ ... }:
{ config, lib, ... }:
with lib;
{
services.printing.enable = true;
options.roles.printing = {
enable = mkEnableOption "Enable default printing setup";
};
config = {
services.printing.enable = true;
# TODO: Add actual printer setup config here...
};
}