This commit is contained in:
Robin Appelman 2026-04-06 22:30:53 +02:00
commit 40560f2129
11 changed files with 68 additions and 69 deletions

View file

@ -12,7 +12,7 @@
};
outputs = {mill-scale, ...}:
mill-scale ./. {
packages.palantir = import ./package.nix;
packages.sidewindow = import ./package.nix;
crossTargets = [
"x86_64-pc-windows-gnu"
@ -30,9 +30,9 @@
...
}: {
imports = [./module.nix];
config = lib.mkIf config.services.palantir.enable {
config = lib.mkIf config.services.sidewindow.enable {
nixpkgs.overlays = [outputs.overlays.default];
services.palantir.package = lib.mkDefault pkgs.palantir;
services.sidewindow.package = lib.mkDefault pkgs.sidewindow;
};
};
};