aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/base/networking.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-02 13:29:35 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-02 13:29:35 +0100
commit154093573c13cdba63a6077710f4e09ccbe2ade3 (patch)
tree9c2ca48491bfb40665c00480f7f3ed0a8f5c1194 /modules/nixos/base/networking.nix
parent284c440ee9586ea45af55ab1cee1b7f26beda204 (diff)
refactored + added README
Diffstat (limited to 'modules/nixos/base/networking.nix')
-rw-r--r--modules/nixos/base/networking.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/nixos/base/networking.nix b/modules/nixos/base/networking.nix
new file mode 100644
index 0000000..9d3a293
--- /dev/null
+++ b/modules/nixos/base/networking.nix
@@ -0,0 +1,20 @@
+{ config, lib, pkgs, ... }:
+
+{
+ networking.hostName = "kronos";
+ networking.networkmanager.enable = true;
+
+ hardware.bluetooth = {
+ enable = true;
+ powerOnBoot = true;
+ settings = {
+ General = {
+ Experimental = true;
+ Enable = "Source,Sink,Media,Socket";
+ AutoConnect = true;
+ FastConnectabke = true;
+ };
+ Policy.AutoEnable = true;
+ };
+ };
+}