all your home manager are belong to us

This commit is contained in:
martyTF 2025-12-18 12:52:29 +01:00
parent e13ad6a8ee
commit af6df24831
16 changed files with 164 additions and 103 deletions

View file

@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [
./kitty.nix
./vscodium.nix
];
}

View file

@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}:
{
options = {
terminal = {
kitty.enable = lib.mkEnableOption "enable git";
};
};
config = lib.mkIf config.terminal.kitty.enable {
programs = {
kitty = {
enable = true;
};
};
};
}