2026-07-18 23:43:52 +02:00

12 lines
272 B
Nix

{ self, inputs, ... }:
{
perSystem = { pkgs, lib, ... }: {
packages.myNoctalia = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
inherit pkgs;
settings =
(builtins.fromJSON
(builtins.readFile ./noctalia.json)).settings;
};
};
}