wip: modularize home-manager
This commit is contained in:
parent
8b735dd5da
commit
ac9918c759
14 changed files with 200 additions and 119 deletions
40
modules/home-manager/zellij.nix
Normal file
40
modules/home-manager/zellij.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.custom-hm.zellij;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
enable = mkEnableOption "zellij configurations";
|
||||
};
|
||||
config = {
|
||||
programs.zellij = mkIf cfg.enable {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_shell = "fish";
|
||||
keybinds = {
|
||||
unbind = [
|
||||
"Ctrl p"
|
||||
"Ctrl n"
|
||||
];
|
||||
};
|
||||
theme = "catppuccin-macchiato";
|
||||
themes.dracula = {
|
||||
fg = [ 248 248 242 ];
|
||||
bg = [ 40 42 54 ];
|
||||
black = [ 0 0 0 ];
|
||||
red = [ 255 85 85 ];
|
||||
green = [ 80 250 123 ];
|
||||
yellow = [ 241 250 140 ];
|
||||
blue = [ 98 114 164 ];
|
||||
magenta = [ 255 121 198 ];
|
||||
cyan = [ 139 233 253 ];
|
||||
white = [ 255 255 255 ];
|
||||
orange = [ 255 184 108 ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue