home / hosts | refactor sway config + general refactor

This commit is contained in:
Don Harper 2025-07-05 20:20:59 -05:00
parent 8538b25027
commit 6e7009451f
11 changed files with 403 additions and 44 deletions

8
hosts/vars.nix Normal file
View file

@ -0,0 +1,8 @@
{ lib, ... }: {
options = {
variables = lib.mkOption {
type = lib.types.attrs;
default = { };
};
};
}