forked from Zynh0722/permafrost
21 lines
399 B
Nix
21 lines
399 B
Nix
|
{
|
||
|
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
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|