re-org and add readme

This commit is contained in:
2025-04-09 14:30:42 -05:00
parent 44f5d4132f
commit d41225d065
4 changed files with 17 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
# Roy's NixOS Homelab Config
+15
View File
@@ -0,0 +1,15 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
};
}
+1
View File
@@ -0,0 +1 @@
throw "Have you forgotten to run nixos-anywhere with `--generate-hardware-config nixos-generate-config ./hardware-configuration.nix`?"