blob: 56951dec09bdfa7a98f8a5f40a0d1b9831cff4e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, lib, pkgs, ... }:
{
networking.hostName = "nixos";
networking.networkmanager.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.blueman.enable = true;
services.printing.enable = true;
services.openssh.enable = true;
networking.firewall = {
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
}
|