mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-06-08 18:09:06 +02:00
feat: added kitty
This commit is contained in:
parent
b9ab646462
commit
ad3bc4581c
4 changed files with 20 additions and 3 deletions
17
home-manager-modules/kitty/default.nix
Normal file
17
home-manager-modules/kitty/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
cfg = config.luj.programs.kitty;
|
||||
in
|
||||
with lib;
|
||||
{
|
||||
options.luj.programs.kitty = {
|
||||
enable = mkEnableOption "Enable SwayWM";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue