This commit is contained in:
aloslider
2026-03-05 00:01:03 +00:00
commit 6829b4d7fb
5 changed files with 152 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
description = "Homelab server flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }@inputs: {
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
];
};
};
}