aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/modules/workstation/net/core.nix
blob: 2b6f37f32064bdd00126c9f0e37e40ca39d2a99f (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, lib, ... }:

let cfg = config.libkookie.workstation.net;
in
{
  networking.hostName = cfg.hostname;
  networking.hostId = cfg.id;

  networking.networkmanager.enable = cfg.networkmanager;
  networking.firewall.enable = cfg.firewall;
}