Skip to content

Commit

Permalink
Fix nix eval error
Browse files Browse the repository at this point in the history
  • Loading branch information
gepbird committed Jun 16, 2024
1 parent f890e55 commit 36bdd3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@
};

outputs = inputs: with inputs;
{
nixosModule = import ./nix/module.nix self.outputs.packages;
} //
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
version = builtins.substring 0 8 self.lastModifiedDate or "dirty";
in
{
packages.default = pkgs.callPackage ./nix/package.nix { inherit version; };
nixosModule = import ./nix/module.nix self.outputs.packages;
devShells.default = pkgs.mkShell {
packages = with pkgs; [
dotnet-sdk_6
Expand Down

0 comments on commit 36bdd3d

Please sign in to comment.