This commit is contained in:
andromeda
2025-12-31 22:45:39 +01:00
commit ab16849362
5 changed files with 216 additions and 0 deletions

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = {
self,
nixpkgs,
}: {
packages.x86_64-linux.default = self.nixosConfigurations.iso.config.system.build.images.iso;
nixosConfigurations = {
iso = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
};
};
};
}