update homemanager settings
This commit is contained in:
parent
b892f80cff
commit
486836fae6
3 changed files with 96 additions and 0 deletions
20
modules/home/apps/cli-apps/kitty/default.nix
Normal file
20
modules/home/apps/cli-apps/kitty/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.wyrdgard; let
|
||||
cfg = config.wyrdgard.apps.cli-apps.kitty;
|
||||
in {
|
||||
options.wyrdgard.cli-apps.kitty = {
|
||||
enable = mkEnableOption "Kity";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
kitty
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue