diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-11 08:44:02 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-03-11 08:44:02 +0100 |
| commit | b834c69d9c8dca7544498fac68bfa9205c208bff (patch) | |
| tree | 1bf9a765235d91eceb4cafab9fe4aa1336bdada7 /hosts | |
| parent | e2b118b9a07bfb53203ebb503a86bdcdd6eaa457 (diff) | |
update config
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/nixedo/default.nix | 4 | ||||
| -rw-r--r-- | hosts/workstation/default.nix | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/hosts/nixedo/default.nix b/hosts/nixedo/default.nix index a5216de..68898bc 100644 --- a/hosts/nixedo/default.nix +++ b/hosts/nixedo/default.nix @@ -86,10 +86,6 @@ virtualisation = { libvirtd.enable = true; - docker = { - enable = true; - storageDriver = "btrfs"; - }; }; system.stateVersion = "24.05"; diff --git a/hosts/workstation/default.nix b/hosts/workstation/default.nix index c4c6f9f..28f92a6 100644 --- a/hosts/workstation/default.nix +++ b/hosts/workstation/default.nix @@ -1,4 +1,4 @@ -{ pkgs, nixpkgs, ... }: +{ pkgs, nixpkgs, lib, ... }: { imports = [ ./hardware.nix @@ -99,6 +99,12 @@ enable = true; nssmdns4 = true; openFirewall = true; + publish = { + enable = true; + addresses = true; + workstation = true; + userServices = true; + }; }; systemd.tmpfiles.rules = [ "L+ /opt/rocm/hip - - - - ${pkgs.rocmPackages.clr}" ]; @@ -106,6 +112,8 @@ environment.systemPackages = with pkgs; [ clinfo ]; + networking.firewall.enable = lib.mkForce false; + virtualisation = { libvirtd = { enable = true; |