forked from foxora/nix
init
This commit is contained in:
commit
a07bd5fd9b
66 changed files with 6115 additions and 0 deletions
17
homes/modules/shell/zellij/zellij.nix
Normal file
17
homes/modules/shell/zellij/zellij.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ inputs, lib, pkgs, ... }:
|
||||
let
|
||||
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
||||
in
|
||||
{
|
||||
# the theme file template for zellij is in wallust
|
||||
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
enableZshIntegration = false;
|
||||
|
||||
extraConfig = ''
|
||||
theme "test"
|
||||
show_startup_tips false
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue