summaryrefslogtreecommitdiff
path: root/modules/features/highLevel/noctalia.nix
blob: 7b4cd7db52a0f559ad86fa5408a44ee47377ed77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  self,
  inputs,
  ...
}: {
  perSystem = {pkgs, ...}: {
    packages.myNoctalia = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
      inherit pkgs;
      settings =
        (builtins.fromJSON
          (builtins.readFile ./noctalia.json)).settings;
    };
  };
}