mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-23 18:10:32 +01:00
Some config stuff
This commit is contained in:
parent
cb9733c19f
commit
5dd3a2b37c
|
@ -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)
|
||||||
|
|
|
@ -17,5 +17,6 @@
|
||||||
defaultBranch = "main";
|
defaultBranch = "main";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
diff-so-fancy.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue