Merged networking folder into core and services

This commit is contained in:
Jurn Wubben 2025-05-24 14:13:58 +02:00
parent 9ee249d1f2
commit 467f9a0b3e
6 changed files with 3 additions and 6 deletions

View file

@ -3,5 +3,6 @@
./boot.nix ./boot.nix
./users.nix ./users.nix
./defaultPackages.nix ./defaultPackages.nix
./networking.nix
]; ];
} }

View file

@ -1,10 +1,5 @@
# networking configuration # networking configuration
{pkgs, ...}: { {pkgs, ...}: {
imports = [
./avahi.nix
./tailscale.nix
];
#FIXME: #FIXME:
networking = { networking = {
# use quad9 with DNS over TLS # use quad9 with DNS over TLS

View file

@ -2,7 +2,6 @@
imports = [ imports = [
./core ./core
./hardware ./hardware
./network
./nix ./nix
./programs ./programs
./server ./server

View file

@ -1,5 +1,7 @@
{ {
imports = [ imports = [
./tailscale.nix
./avahi.nix
./kanata.nix ./kanata.nix
./power.nix ./power.nix
./ssh.nix ./ssh.nix