mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 00:19:00 +00:00
17 lines
387 B
Nix
17 lines
387 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
locale.enable = true;
|
|
wrappers.zellij = {
|
|
wraparound.variant = "bubblewrap";
|
|
wraparound.subwrapper.arg0 = lib.getExe' pkgs.zellij "zellij";
|
|
};
|
|
build.extraPassthru.tests = {
|
|
zellijWrapperCheck = let wrapper = config.build.toplevel;
|
|
in pkgs.runCommand { } ''
|
|
[ -x ${lib.getExe' wrapper "zellij"} ] && touch $out
|
|
|
|
'';
|
|
};
|
|
}
|