20 lines
345 B
Nix
20 lines
345 B
Nix
![]() |
{
|
||
|
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;
|
||
|
}
|