This commit is contained in:
mjallen18
2025-12-14 21:50:50 -06:00
parent 0012a019fc
commit 34539045e5
41 changed files with 164 additions and 251 deletions

View File

@@ -1,7 +1,7 @@
{ lib, config, ... }:
{ lib, config, namespace, ... }:
with lib;
let
cfg = config.mjallen.programs.kitty;
cfg = config.${namespace}.programs.kitty;
in
{
imports = [ ./options.nix ];

View File

@@ -4,7 +4,7 @@ let
inherit (lib.${namespace}) mkOpt;
in
{
options.mjallen.programs.kitty = {
options.${namespace}.programs.kitty = {
enable = mkEnableOption "enable kitty terminal";
};
}