mirror of
https://github.com/NixOS/templates.git
synced 2026-01-13 01:38:35 +01:00
warning: flake output attribute 'defaultPackage' is deprecated; use 'packages.<system>.default' instead
11 lines
231 B
Nix
11 lines
231 B
Nix
{
|
|
description = "A very basic flake";
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
|
|
|
|
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
|
|
|
|
};
|
|
}
|