mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-05 16:36:56 +00:00
17 lines
548 B
Nix
17 lines
548 B
Nix
# Definitions can be imported from a separate file like this one
|
|
|
|
{ self, ... }: {
|
|
perSystem = { config, self', inputs', pkgs, ... }: {
|
|
# Definitions like this are entirely equivalent to the ones
|
|
# you may have directly in flake.nix.
|
|
packages.hello = pkgs.hello;
|
|
};
|
|
flake = {
|
|
nixosModules.hello = { pkgs, ... }: {
|
|
environment.systemPackages = [
|
|
# or self.inputs.nixpkgs.legacyPackages.${pkgs.stdenv.hostPlatform.system}.hello
|
|
self.packages.${pkgs.stdenv.hostPlatform.system}.hello
|
|
];
|
|
};
|
|
};
|
|
}
|