Adding Halloy config. And tweaking Zed
This commit is contained in:
parent
bea8010ff8
commit
6c19bdc0be
1 changed files with 17 additions and 18 deletions
35
home-gui.nix
35
home-gui.nix
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
# Ghostty not building on my mac at the moment
|
# TODO: Ghostty not building on my mac at the moment
|
||||||
let
|
let
|
||||||
ghostty-mock = pkgs.writeShellScriptBin "gostty-mock" ''
|
ghostty-mock = pkgs.writeShellScriptBin "gostty-mock" ''
|
||||||
true
|
true
|
||||||
|
|
@ -8,6 +8,20 @@ let
|
||||||
in {
|
in {
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
|
|
||||||
|
programs.halloy = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
theme = "catppuccin-mocha";
|
||||||
|
|
||||||
|
servers.liberachat = {
|
||||||
|
nickname = "sw4n";
|
||||||
|
server = "irc.libera.chat";
|
||||||
|
nick_password_file = "/Users/dustinswan/.liberachat-nickserv-password";
|
||||||
|
channels = ["#halloy" "#haskell" "#nixos"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.ghostty = {
|
programs.ghostty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
installBatSyntax = false;
|
installBatSyntax = false;
|
||||||
|
|
@ -17,7 +31,7 @@ in {
|
||||||
font-family = "Iosevka NFM";
|
font-family = "Iosevka NFM";
|
||||||
font-size = 16;
|
font-size = 16;
|
||||||
font-thicken = true;
|
font-thicken = true;
|
||||||
# theme = "dark:catppuccin-mocha,light:catppuccin-latte";
|
# theme = "dark:catppuccin-mocha,light:catppuccin-latte"; # TODO: waiting on all cli apps to handle auto switching too
|
||||||
theme = "catppuccin-mocha";
|
theme = "catppuccin-mocha";
|
||||||
background-opacity = 0.95;
|
background-opacity = 0.95;
|
||||||
background-blur-radius = 15;
|
background-blur-radius = 15;
|
||||||
|
|
@ -47,22 +61,7 @@ in {
|
||||||
enable_vim_sneak = true;
|
enable_vim_sneak = true;
|
||||||
use_smartcase_find = true;
|
use_smartcase_find = true;
|
||||||
};
|
};
|
||||||
|
format_on_save = "off";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.halloy = {
|
|
||||||
target = ".config/halloy/config.toml";
|
|
||||||
text = ''
|
|
||||||
theme = "catppuccin-mocha"
|
|
||||||
|
|
||||||
[servers.liberachat]
|
|
||||||
nickname = "sw4n"
|
|
||||||
server = "irc.libera.chat"
|
|
||||||
nick_password_file = "/Users/dustinswan/.liberachat-nickserv-password"
|
|
||||||
channels = ["#halloy", "#haskell", "#nixos"]
|
|
||||||
|
|
||||||
[font]
|
|
||||||
size = 16
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue