permafrost/flake.nix
2024-12-27 00:24:59 -08:00

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
];
};
};
};
}