Move modules folders
This commit is contained in:
parent
914909009c
commit
c1101e7b45
183 changed files with 327 additions and 327 deletions
42
hm/zellij.nix
Normal file
42
hm/zellij.nix
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
{ nixosConfig, ... }:
|
||||
with nixosConfig.nix-rice.lib;
|
||||
let
|
||||
strPalette = palette.toRgbHex nixosConfig.nix-rice.rice.colorPalette;
|
||||
in
|
||||
{
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
enableZshIntegration = false;
|
||||
enableBashIntegration = false;
|
||||
enableFishIntegration = false;
|
||||
};
|
||||
|
||||
home.shellAliases = {
|
||||
"ze" = "zellij";
|
||||
"zec" = "zellij -l compact";
|
||||
};
|
||||
|
||||
xdg.configFile."zellij/config.kdl".text = ''
|
||||
theme "nix-rice"
|
||||
pane_frames false
|
||||
show_startup_tips false
|
||||
'';
|
||||
|
||||
xdg.configFile."zellij/themes/nix-rice.kdl".text = ''
|
||||
themes {
|
||||
nix-rice {
|
||||
bg "${strPalette.primary.dim_foreground}" // Foreground darker
|
||||
fg "${strPalette.primary.bright_foreground}" // Selection
|
||||
red "${strPalette.normal.red}"
|
||||
black "${strPalette.primary.background}" // Background
|
||||
green "${strPalette.normal.green}"
|
||||
yellow "${strPalette.normal.yellow}"
|
||||
blue "${strPalette.normal.blue}"
|
||||
magenta "${strPalette.normal.magenta}"
|
||||
cyan "${strPalette.normal.cyan}"
|
||||
white "${strPalette.primary.foreground}" // Foreground
|
||||
orange "${strPalette.bright.red}"
|
||||
}
|
||||
}
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue