mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-29 23:30:51 +01:00
17 lines
254 B
Nix
17 lines
254 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|