feat: Added gdm monitors.xml and kitty font update

This commit is contained in:
uttarayan21
2025-02-02 19:44:51 +05:30
parent fff8e7ac3a
commit f588456c78
7 changed files with 127 additions and 20 deletions

23
common/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;
};
}