diff --git a/hosts/default.nix b/hosts/default.nix index 05d9258..6f159d0 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -10,7 +10,7 @@ home-manager = { imports = [ inputs.home-manager.nixosModules.home-manager - ({ + { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.extraSpecialArgs = { @@ -18,7 +18,7 @@ inherit self inputs config; }; }; - }) + } ]; }; }; diff --git a/hosts/trinkgenossin/hardware-configuration.nix b/hosts/trinkgenossin/hardware-configuration.nix index a1432c9..0d8b2d9 100644 --- a/hosts/trinkgenossin/hardware-configuration.nix +++ b/hosts/trinkgenossin/hardware-configuration.nix @@ -18,6 +18,7 @@ "virtio_pci" "sr_mod" "virtio_blk" + "virtio_net" ]; boot.initrd.kernelModules = [ "dm-snapshot" ]; boot.kernelModules = [ "kvm-amd" ]; @@ -50,5 +51,4 @@ swapDevices = [ { device = "/dev/disk/by-label/swap"; } ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - virtualisation.hypervGuest.enable = true; }