Files
nix-config/outputs.nix
2026-01-27 20:53:16 +01:00

14 lines
248 B
Nix

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