2024-12-27 00:17:49 -08:00
|
|
|
{
|
2024-12-27 00:56:59 -08:00
|
|
|
description = "permafrost";
|
2024-12-27 00:17:49 -08:00
|
|
|
|
|
|
|
inputs = {
|
2024-12-27 01:00:45 -08:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
2024-12-27 00:23:27 -08:00
|
|
|
|
|
|
|
nyazoom = {
|
2024-12-27 01:12:58 -08:00
|
|
|
url = "git+https://git.zynh.me/Zynh0722/nyazoom.git";
|
2024-12-27 00:23:27 -08:00
|
|
|
};
|
2024-12-27 00:17:49 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = inputs@{ nixpkgs, self, ... }: {
|
|
|
|
nixosConfigurations = {
|
|
|
|
virtmsi = nixpkgs.lib.nixosSystem {
|
|
|
|
specialArgs = { inherit inputs self; };
|
|
|
|
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
./hardware-configuration.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|