Garage on loki

This commit is contained in:
Filippo Berto 2023-03-22 10:44:48 +01:00
parent d5fbab32bc
commit 90b6180bc1
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
11 changed files with 183 additions and 31 deletions

View file

@ -0,0 +1,66 @@
<<<<<<< HEAD
{ pkgs, ... }:
let
strPalette = pkgs.lib.nix-rice.palette.toRgbHex pkgs.rice.colorPalette;
in
{
programs.zellij.enable = true;
home.shellAliases."ze" = "zellij";
xdg.configFile."zellij/config.kdl".text = ''
theme "nix-rice"
pane_frames false
'';
xdg.configFile."zellij/themes/nix-rice.kdl".text = ''
themes {
nix-rice {
bg "${strPalette.primary.foreground}"
fg "${strPalette.primary.background}"
red "${strPalette.normal.red}"
black "${strPalette.normal.black}"
green "${strPalette.normal.green}"
yellow "${strPalette.normal.yellow}"
blue "${strPalette.normal.blue}"
magenta "${strPalette.normal.magenta}"
cyan "${strPalette.normal.cyan}"
white "${strPalette.normal.white}"
orange "${strPalette.bright.red}"
}
}
'';
}
||||||| parent of 6c85a84 (Zellij)
=======
{ pkgs, ... }:
let
strPalette = pkgs.lib.nix-rice.palette.toRgbHex pkgs.rice.colorPalette;
in
{
programs.zellij.enable = true;
xdg.configFile."zellij/config.kdl".text = ''
theme "nix-rice"
pane_frames false
'';
xdg.configFile."zellij/themes/nix-rice.kdl".text = ''
themes {
nix-rice {
bg "${strPalette.primary.foreground}"
fg "${strPalette.primary.background}"
red "${strPalette.normal.red}"
black "${strPalette.normal.black}"
green "${strPalette.normal.green}"
yellow "${strPalette.normal.yellow}"
blue "${strPalette.normal.blue}"
magenta "${strPalette.normal.magenta}"
cyan "${strPalette.normal.cyan}"
white "${strPalette.normal.white}"
orange "${strPalette.bright.red}"
}
}
'';
}
>>>>>>> 6c85a84 (Zellij)