wezterm configuration + st config
This commit is contained in:
parent
7b445b1407
commit
d1f8a29827
6 changed files with 81 additions and 2 deletions
53
flake.lock
53
flake.lock
|
@ -115,6 +115,21 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"flake-utils_3": {
|
||||
"locked": {
|
||||
"lastModified": 1656928814,
|
||||
"narHash": "sha256-RIFfgBuKz6Hp89yRr7+NR5tzIAbn52h8vT6vXkYjZoM=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "7e2a3b3dfd9af950a856d66b0a7d01e3c18aa249",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"home-manager": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
@ -300,6 +315,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_3": {
|
||||
"locked": {
|
||||
"lastModified": 1658161305,
|
||||
"narHash": "sha256-X/nhnMCa1Wx4YapsspyAs6QYz6T/85FofrI6NpdPDHg=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e4d49de45a3b5dbcb881656b4e3986e666141ea9",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"parts": {
|
||||
"inputs": {
|
||||
"nixpkgs-lib": [
|
||||
|
@ -393,7 +424,8 @@
|
|||
"nix-gaming": "nix-gaming",
|
||||
"nix-inspect": "nix-inspect",
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"nixpkgs-unstable": "nixpkgs-unstable"
|
||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||
"st": "st"
|
||||
}
|
||||
},
|
||||
"rust-overlay": {
|
||||
|
@ -436,6 +468,25 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"st": {
|
||||
"inputs": {
|
||||
"flake-utils": "flake-utils_3",
|
||||
"nixpkgs": "nixpkgs_3"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1726952303,
|
||||
"narHash": "sha256-d2B4oIpNggaF5bIz6hZ6Bwa9pVzChmL/NbqKtx+8TTg=",
|
||||
"owner": "devawaves",
|
||||
"repo": "st",
|
||||
"rev": "12748a3f10adcb69a9bda7629b771dc6bbaf7da5",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "devawaves",
|
||||
"repo": "st",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
"locked": {
|
||||
"lastModified": 1681028828,
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
st.url = "github:devawaves/st";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
|
|
25
home/dotfiles/chadtain.toml
Normal file
25
home/dotfiles/chadtain.toml
Normal file
|
@ -0,0 +1,25 @@
|
|||
[colors]
|
||||
foreground = '#B0B0B0'
|
||||
background = '#151B21'
|
||||
cursor_fg = '#B0B0B0'
|
||||
cursor_border = '#B0B0B0'
|
||||
ansi = [
|
||||
'#151B21',
|
||||
'#AC8A8C',
|
||||
'#8AAC8B',
|
||||
'#ACA98A',
|
||||
'#6B8BAB',
|
||||
'#8F8AAC',
|
||||
'#7C9CBC',
|
||||
'#565C62'
|
||||
]
|
||||
brights = [
|
||||
'#42484E',
|
||||
'#C9938A',
|
||||
'#9EC49F',
|
||||
'#C4C19E',
|
||||
'#7797B7',
|
||||
'#A39EC4',
|
||||
'#9AAFE6',
|
||||
'#B0B0B0'
|
||||
]
|
|
@ -2,7 +2,7 @@ local wezterm = require("wezterm")
|
|||
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
config.color_scheme = "Catppuccin Macchiato"
|
||||
config.color_scheme = "chadtain"
|
||||
config.use_fancy_tab_bar = false
|
||||
config.window_decorations = "RESIZE"
|
||||
config.hide_tab_bar_if_only_one_tab = true
|
||||
|
|
|
@ -12,6 +12,7 @@ in {
|
|||
hash = "sha256-HNdGHJ8n81HpVK9gFiRLZBBh0sz4FIUUx/ykGyoxv0c=";
|
||||
}
|
||||
+ "/ports/wezterm/colors/camelliaHopeDark.toml");
|
||||
xdg.configFile."wezterm/colors/chadtain.toml".text = builtins.readFile ../../dotfiles/chadtain.toml;
|
||||
programs = {
|
||||
wezterm = {
|
||||
enable = true;
|
||||
|
|
|
@ -21,6 +21,7 @@ in {
|
|||
packages =
|
||||
[
|
||||
inputs.nh.packages.x86_64-linux.default
|
||||
inputs.st.packages.x86_64-linux.st-snazzy
|
||||
]
|
||||
++ (with pkgs; [
|
||||
nom
|
||||
|
|
Loading…
Reference in a new issue