Update flake

This commit is contained in:
thiloho
2024-02-03 21:01:15 +01:00
parent 466ba8813a
commit 61c4520841
4 changed files with 20 additions and 12 deletions

View File

@@ -12,11 +12,17 @@
networking = {
hostName = "pc";
firewall = {
allowedTCPPorts = [ 5173 8081 ];
allowedUDPPorts = [ 5173 8081 ];
allowedTCPPorts = [ 5173 8081 53317 ];
allowedUDPPorts = [ 5173 8081 53317 ];
};
};
boot.kernelParams = [ "amd_iommu=on" ];
virtualisation.libvirtd.enable = true;
virtualisation.libvirtd.qemu.swtpm.enable = true;
programs.virt-manager.enable = true;
services = {
syncthing = {
enable = true;
@@ -43,7 +49,7 @@
home-manager.users.thiloho = { pkgs, lib, ... }: {
programs.git.signing.key = "5ECD00BDC15A987E";
home = {
packages = with pkgs; [ blender inkscape libcec ];
packages = with pkgs; [ blender inkscape localsend ];
stateVersion = "23.05";
};
};