forked from Zynh0722/permafrost
25 lines
517 B
Nix
25 lines
517 B
Nix
{
|
|
descriptions = "permafrost";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
nyazoom = {
|
|
url = "https://git.zynh.me/Zynh0722/nyazoom";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = inputs@{ nixpkgs, self, ... }: {
|
|
nixosConfigurations = {
|
|
virtmsi = nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit inputs self; };
|
|
|
|
modules = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|