Skip to content

Commit e867784

Browse files
committed
nix
1 parent e989a53 commit e867784

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.direnv/flake-inputs/2y9xcdh9v8cl5fnkb1pw1ckfj290f9s1-source

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/nix/store/fwvqkjf9irhxcs14bnwnbi473x4l271a-source

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
};
88

99
outputs = { self, nixpkgs, flake-utils, ... }:
10-
flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; in {
10+
(flake-utils.lib.eachDefaultSystem (system: let pkgs = nixpkgs.legacyPackages.${system}; in {
1111
devShells.default = pkgs.mkShell {
1212
packages = with pkgs; [
1313
nodejs_23
@@ -18,7 +18,7 @@
1818
packages.website = pkgs.callPackage ./nix/package.nix {
1919
nodejs = pkgs.nodejs_23;
2020
};
21-
22-
nixosModules.default = ./nix/module.nix;
23-
});
21+
})) // {
22+
nixosModules.default = import ./nix/module.nix { inherit self; };
23+
};
2424
}

0 commit comments

Comments
 (0)