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

13 lines
241 B
Nix

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