initial
This commit is contained in:
18
hosts/dunamis/users/work/programs/terminal/ghostty.nix
Normal file
18
hosts/dunamis/users/work/programs/terminal/ghostty.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.terminal.ghostty;
|
||||
in {
|
||||
options = {
|
||||
terminal.ghostty.enable = mkEnableOption "enable ghostty terminal";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
programs.ghostty.enable = true;
|
||||
# home.packages = [
|
||||
# inputs.ghostty.packages.x86_64-linux.default
|
||||
# pkgs.ghostty
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user