add more apps and services

This commit is contained in:
2023-07-22 19:07:52 +02:00
parent b563c17095
commit e01fc0be4c
4 changed files with 20 additions and 6 deletions

View File

@@ -1,10 +1,11 @@
{ pkgs, ... }: {
networking = {
hostName = "nixos";
networkmanager.enable = true;
nameservers = [ "192.168.1.1" "9.9.9.9" "2620:fe::fe" ];
networkmanager = {
enable = true;
dns = "none";
};
firewall = {
enable = true;
allowedTCPPortRanges = [
@@ -14,7 +15,5 @@
{ from = 1714; to = 1764; } # KDE Connect
];
};
};
}