Initial commit

This commit is contained in:
2026-01-27 20:17:44 +01:00
commit 5ba014c249
5 changed files with 244 additions and 0 deletions

13
outputs.nix Normal file
View File

@@ -0,0 +1,13 @@
{ nixpkgs, home-manager, ... }:
{
nixosConfigurations = {
"gandalf" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
home-manager.nixosModules.home-manager
./systems/gandalf
];
};
};
}