Files
Olympus/modules/hosts/homebox/default.nix
2026-04-22 13:27:21 -05:00

13 lines
295 B
Nix

{ self, inputs, ... }: {
flake.nixosConfigurations."homebox" = inputs.nixpkgs.lib.nixosSystem {
modules = with self.nixosModules; [
(user-nathan "laptop")
homebox
homebox-hardware
self.diskoConfigurations.homebox
];
};
}