Set up waybar and building ISOs.

This commit is contained in:
Tom Alexander
2024-12-21 10:18:28 -05:00
parent a7f3754d25
commit a0f9f4baa4
13 changed files with 500 additions and 131 deletions

View File

@@ -0,0 +1,18 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
options.me.buildingIso = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we are building an ISO image.";
};
}