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