forked from foxora/nix
18 lines
328 B
Nix
18 lines
328 B
Nix
|
|
{ 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
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
}
|