/nix/store/dlwqlnbaj5vfm9aw20r1yxk8y56lmgif-repo/header.tmpl
nichts/modules/programs/gui/zedless.mod.nix

20 lines
345 B
Nix
Raw Permalink Normal View History

2025-09-06 15:32:08 +02:00
{
config,
inputs,
lib,
...
}:
let
inherit (lib) getFlakePkg;
inherit (lib.lists) singleton;
inherit (lib.modules) mkIf;
inherit (config.meta.system) isWorkstation;
zedless = (getFlakePkg inputs.zedless).overrideAttrs {
doCheck = false;
};
in
{
# environment.systemPackages = mkIf isWorkstation <| singleton zedless;
}