nixos-config/flake.nix

9 lines
181 B
Nix
Raw Normal View History

2021-05-22 16:31:41 +00:00
{
outputs = { self, nixpkgs }: {
nixosConfigurations.petalius = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./petalius.nix ];
};
};
}