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