Skip to content

Commit

Permalink
add all output types
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Oct 29, 2023
1 parent f8f9f95 commit 2230fac
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,22 @@

outputs = { nixpkgs, ... }: {
packages.x86_64-linux.git = nixpkgs.legacyPackages.x86_64-linux.git;
packages.x86_64-linux.vim = nixpkgs.legacyPackages.x86_64-linux.vim;

checks.x86_64-linux.git = nixpkgs.legacyPackages.x86_64-linux.git;

apps.x86_64-linux.default = { type = "app"; program = "..."; };

overlays."myoverlay" = final: prev: { };

nixosModules."myhostname" = { config }: { options = {}; config = {}; };

formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;

nixosConfigurations."myhostname" = {};

devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;

templates.default = { path = "<store-path>"; description = "template test"; };
};
}

0 comments on commit 2230fac

Please sign in to comment.