14 lines
218 B
Nix
14 lines
218 B
Nix
|
|
{ inputs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
imports = with inputs; [
|
||
|
|
hardware.nixosModules.common-cpu-intel
|
||
|
|
] ++ [
|
||
|
|
./configuration.nix
|
||
|
|
./hardware-configuration.nix
|
||
|
|
./network.nix
|
||
|
|
./tailscale.nix
|
||
|
|
../../common
|
||
|
|
];
|
||
|
|
}
|