mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
15 lines
236 B
Nix
15 lines
236 B
Nix
{
|
|
networking.useNetworkd = true;
|
|
systemd.network = {
|
|
enable = true;
|
|
networks."40-eno1" = {
|
|
matchConfig.Name = "eno1";
|
|
networkConfig.DHCP = "yes";
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./nextcloud
|
|
./paperless
|
|
];
|
|
}
|