blob: 7272ac3ab016690469b424a4bc6114551135f783 (
plain)
1
2
3
4
5
6
7
8
|
{inputs, ...}: {
perSystem = {pkgs, ...}: {
packages.noctalia-shell = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
inherit pkgs;
settings = (builtins.fromJSON (builtins.readFile ./noctalia.json)).settings;
};
};
}
|