feat: Move gui-programs to apps

This commit is contained in:
uttarayan21
2025-03-26 01:17:14 +05:30
parent cf2833d567
commit ceaf555686
10 changed files with 18 additions and 27 deletions

23
home/apps/ghostty.nix Normal file
View File

@@ -0,0 +1,23 @@
{
pkgs,
device,
inputs,
...
}: {
programs.ghostty = {
enable = pkgs.stdenv.isLinux;
installBatSyntax = false;
settings = {
theme = "catppuccin-mocha";
# font-family = [
# ""
# "Hasklug Nerd Font Mono"
# ];
window-decoration = false;
title = "";
command = "fish";
background-opacity = 0.8;
};
package = pkgs.ghostty;
};
}