flake.nix: fix nixosModules.default

This commit is contained in:
Astro 2022-12-17 00:49:23 +01:00
parent 0d1eadc34c
commit 050441703a
1 changed files with 1 additions and 1 deletions

View File

@ -61,6 +61,6 @@
alert2muc = makeAlert2muc prev;
});
nixosModules.default = ./nixos-module.nix { inherit self; };
nixosModules.default = import ./nixos-module.nix { inherit self; };
};
}