add sway
This commit is contained in:
parent
b50deaf53c
commit
663c9608d0
13 changed files with 331 additions and 68 deletions
20
modules/home/apps/term/foot/default.nix
Normal file
20
modules/home/apps/term/foot/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.custom; let
|
||||
cfg = config.apps.term.foot;
|
||||
in {
|
||||
options.apps.term.foot = with types; {
|
||||
enable = mkBoolOpt false "Enable Foot Terminal";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue