summaryrefslogtreecommitdiff
path: root/modules/packages/noctalia/hosts/tiamat/noctalia.nix
blob: 212ac472f6a61ca8eba3c4e49063b06b36d962a8 (plain)
1
2
3
4
5
6
7
8
{inputs, ...}: {
  perSystem = {pkgs, ...}: {
    packages.tiamat-noctalia-shell = inputs.wrapper-modules.wrappers.noctalia-shell.wrap {
      inherit pkgs;
      settings = (builtins.fromJSON (builtins.readFile ./noctalia.json)).settings;
    };
  };
}