terminal: foot --> ghostty

This commit is contained in:
ooks-io 2025-01-21 15:35:02 +11:00
parent 512774da02
commit 4ffecbac0c
7 changed files with 89 additions and 17 deletions

View file

@ -21,13 +21,14 @@ in {
default = "firefox";
};
terminal = mkOption {
type = enum ["foot"];
default = "foot";
type = enum ["foot" "ghostty"];
default = "ghostty";
};
};
programs = {
firefox.enable = mkEnableOption "";
foot.enable = mkEnableOption "";
ghostty.enable = mkEnableOption "";
};
};
}