mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
added wezterm and imported urxvt settings
This commit is contained in:
parent
8da431aff7
commit
b14dccae05
6 changed files with 56 additions and 11 deletions
18
flake.lock
18
flake.lock
|
@ -8,11 +8,11 @@
|
||||||
"utils": "utils"
|
"utils": "utils"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1666990295,
|
"lastModified": 1668332334,
|
||||||
"narHash": "sha256-JPMTX8W36IPV1jmKV1qEhNBI4MbIPYsnccWyTUlSiG0=",
|
"narHash": "sha256-YT1qcE/MCqBO1Bi/Yr6GcFpNKsvmzrBKh8juyXDbxQc=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "423211401c245934db5052e3867cac704f658544",
|
"rev": "bc90de24d898655542589237cc0a6ada7564cb6c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -59,11 +59,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1667050928,
|
"lastModified": 1668087632,
|
||||||
"narHash": "sha256-xOn0ZgjImIyeecEsrjxuvlW7IW5genTwvvnDQRFncB8=",
|
"narHash": "sha256-T/cUx44aYDuLMFfaiVpMdTjL4kpG7bh0VkN6JEM78/E=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "fdebb81f45a1ba2c4afca5fd9f526e1653ad0949",
|
"rev": "5f588eb4a958f1a526ed8da02d6ea1bea0047b9f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -82,11 +82,11 @@
|
||||||
},
|
},
|
||||||
"utils": {
|
"utils": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1659877975,
|
"lastModified": 1667395993,
|
||||||
"narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
|
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "flake-utils",
|
"repo": "flake-utils",
|
||||||
"rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
|
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -29,6 +29,7 @@ in {
|
||||||
imports = [
|
imports = [
|
||||||
./home.nix
|
./home.nix
|
||||||
../modules/git.nix
|
../modules/git.nix
|
||||||
|
../modules/wezterm.nix
|
||||||
../modules/urxvt.nix
|
../modules/urxvt.nix
|
||||||
../modules/vim.nix
|
../modules/vim.nix
|
||||||
../modules/zsh.nix
|
../modules/zsh.nix
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
enable = true;
|
enable = true;
|
||||||
version = 2;
|
version = 2;
|
||||||
# useOSProber = true;
|
#useOSProber = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -19,7 +19,7 @@ in
|
||||||
foreground = "#F4EFD6";
|
foreground = "#F4EFD6";
|
||||||
background = "[80]#202020";
|
background = "[80]#202020";
|
||||||
fontColor = "#ffffff";
|
fontColor = "#ffffff";
|
||||||
blurRadius = "10"; # Doesn't seem to be affecting it
|
rxvt-unicode = "10";
|
||||||
|
|
||||||
color1 = "#E44B4B";
|
color1 = "#E44B4B";
|
||||||
color4 = "#0091F1";
|
color4 = "#0091F1";
|
||||||
|
|
44
modules/wezterm.nix
Normal file
44
modules/wezterm.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
programs.wezterm = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.wezterm;
|
||||||
|
|
||||||
|
colorSchemes = {
|
||||||
|
SeeThroughBlack = {
|
||||||
|
ansi = [
|
||||||
|
"#000000" "#E44B4B" "#00cd00" "#cdcd00"
|
||||||
|
"#0091f1" "#cd00cd" "#00cdcd" "#faebd7"
|
||||||
|
];
|
||||||
|
brights = [
|
||||||
|
"#404040" "#ff0000" "#00ff00" "#ffff00"
|
||||||
|
"#48b3fb" "#ff00ff" "#00ffff" "#ffffff"
|
||||||
|
];
|
||||||
|
foreground = "#F4EFD6";
|
||||||
|
background = "#202020";
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
|
return {
|
||||||
|
window_background_opacity = 0.8,
|
||||||
|
font = wezterm.font_with_fallback {
|
||||||
|
'DejaVuSansMono',
|
||||||
|
'MesloLGS NF'
|
||||||
|
},
|
||||||
|
font_size = 11.0,
|
||||||
|
color_scheme = 'SeeThroughBlack',
|
||||||
|
hide_tab_bar_if_only_one_tab = true,
|
||||||
|
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue