permafrost/flake.nix

21 lines
399 B
Nix
Raw Normal View History

2024-12-27 00:17:49 -08:00
{
descriptions = "permafrost";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = inputs@{ nixpkgs, self, ... }: {
nixosConfigurations = {
virtmsi = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs self; };
modules = [
./configuration.nix
./hardware-configuration.nix
];
};
};
};
}