forked from Zynh0722/permafrost
24 lines
477 B
Nix
24 lines
477 B
Nix
{
|
|
description = "permafrost";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
|
|
nyazoom = {
|
|
url = "git+https://git.zynh.me/Zynh0722/nyazoom.git";
|
|
};
|
|
};
|
|
|
|
outputs = inputs@{ nixpkgs, self, ... }: {
|
|
nixosConfigurations = {
|
|
virtmsi = nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit inputs self; };
|
|
|
|
modules = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|