Some config stuff

This commit is contained in:
xqtc 2024-11-22 17:37:00 +01:00
parent cb9733c19f
commit 5dd3a2b37c
Signed by: xqtc
GPG key ID: 2C064D095926D9D1
7 changed files with 10 additions and 3 deletions

View file

@ -13,7 +13,7 @@ local HOSTNAME = getHostname()
config.color_scheme = "Apathy" config.color_scheme = "Apathy"
-- config.font = wezterm.font 'Hack Nerd Font Mono' -- config.font = wezterm.font 'Hack Nerd Font Mono'
config.font = wezterm.font 'ComicShannsMono Nerd Font Mono' config.font = wezterm.font 'Hasklug Nerd Font Mono'
if getHostname() == "lilith" or getHostname() == "alastor" then if getHostname() == "lilith" or getHostname() == "alastor" then
config.font_size = 15 config.font_size = 15
else else
@ -119,7 +119,7 @@ wezterm.on('update-status', function(window, pane)
end end
window:set_right_status(wezterm.format { window:set_right_status(wezterm.format {
{ Text = bat .. date .. ' 🐱 |' }, { Text = bat .. date .. '🏴 🏳️‍⚧️' },
}) })
end) end)
wezterm.on('update-status', function(window, pane) wezterm.on('update-status', function(window, pane)

View file

@ -17,5 +17,6 @@
defaultBranch = "main"; defaultBranch = "main";
}; };
}; };
diff-so-fancy.enable = true;
}; };
} }

View file

@ -35,6 +35,10 @@
atuin = { atuin = {
enable = true; enable = true;
enableNushellIntegration = true; enableNushellIntegration = true;
settings = {
style = "compact";
inline_height = 10;
};
}; };
eza.enable = true; eza.enable = true;
nushell = { nushell = {

View file

@ -37,6 +37,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
../../../common ../../../common
../../antivirus.nix ../../antivirus.nix
../../../common/comin.nix
../../../modules/home-manager.nix ../../../modules/home-manager.nix
../../gc.nix ../../gc.nix
]; ];

View file

@ -7,9 +7,9 @@
with lib; { with lib; {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
../../../common/comin.nix
./monitoring.nix ./monitoring.nix
./caddy.nix ./caddy.nix
./comin.nix
./jellyfin.nix ./jellyfin.nix
# ./factorio.nix # ./factorio.nix
./calibre-web.nix ./calibre-web.nix

View file

@ -11,6 +11,7 @@ in {
config = { config = {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.backupFileExtension = "hm_bak";
home-manager.extraSpecialArgs = { home-manager.extraSpecialArgs = {
inherit inputs; inherit inputs;