13 lines
295 B
Nix
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
|
|
];
|
|
};
|
|
}
|