DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 14cef2b1ee1884a9e332b57d0a6924f1ec2f2357 nix-arta/roles/zellij.nix -rw-r--r-- 415 bytes
14cef2b1Jonni Liljamo feat(roles/nvidia, roles/plasma, hosts/alice): nvidia, plasma, alice setup 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  config,
  lib,
  ...
}: let
  cfg = config.roles.zellij;
in {
  options.roles.zellij = {
    enable = lib.mkEnableOption "enable zellij";
  };

  config = lib.mkIf cfg.enable {
    hm.programs.zellij = {
      enable = true;
      settings = {
        simplified_ui = true;
        pane_frames = false;
        default_layout = "compact";
        ui.pane_frames.hide_session_name = true;
      };
    };
  };
}