permafrost/flake.nix

26 lines
516 B
Nix
Raw Normal View History

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 = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
2024-12-27 00:23:27 -08:00
nyazoom = {
url = "https://git.zynh.me/Zynh0722/nyazoom";
inputs.nixpkgs.follows = "nixpkgs";
};
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
];
};
};
};
}