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

      settings = builtins.fromJSON (
        builtins.readFile ./ngeNoctalia.json
      );
    };
  };
}