oh wow it's actually functional now

and so fast

vroom vrooom
This commit is contained in:
marty 2025-12-16 21:18:31 +00:00
parent d4c499fce1
commit bfbc64b611
6 changed files with 74 additions and 44 deletions

View file

@ -10,5 +10,6 @@
./boot.nix
./shell.nix
./terminal.nix
./networking.nix
];
}

31
system/networking.nix Normal file
View file

@ -0,0 +1,31 @@
{ config, pkgs, ... }:
{
networking = {
networkmanager.enable = true;
firewall = {
enable = true;
allowedUDPPorts = [ config.services.tailscale.port ];
trustedInterfaces = [ "tailscale0" ];
};
};
hardware = {
bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Experimental = true;
};
};
};
};
}

View file

@ -4,6 +4,7 @@
environment = {
systemPackages = with pkgs; [
kitty
rofi
];
};
}