feat(ghostty): update device check and font configuration
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s
feat(programs): add rustup configuration
This commit is contained in:
@@ -1,23 +1,20 @@
|
||||
{
|
||||
pkgs,
|
||||
device,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
programs.ghostty = {
|
||||
enable = pkgs.stdenv.isLinux;
|
||||
enable = device.is "ryu";
|
||||
installBatSyntax = false;
|
||||
settings = {
|
||||
theme = "catppuccin-mocha";
|
||||
# font-family = [
|
||||
# ""
|
||||
# "Hasklug Nerd Font Mono"
|
||||
# ];
|
||||
font-family = [
|
||||
"Hasklug Nerd Font Mono"
|
||||
];
|
||||
window-decoration = false;
|
||||
title = "";
|
||||
command = "fish";
|
||||
background-opacity = 0.8;
|
||||
};
|
||||
package = pkgs.ghostty;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user