diff --git a/home-manager/nixos-home.nix b/home-manager/nixos-home.nix index 0c3a7da..484bf99 100644 --- a/home-manager/nixos-home.nix +++ b/home-manager/nixos-home.nix @@ -15,7 +15,10 @@ feh dconf docker + cdrkit discord + tailscale + wireshark pavucontrol google-chrome nextcloud-client diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 0d4519a..4fec868 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -104,9 +104,6 @@ syntaxHighlighting.enable = true; }; - # Docker configuration - virtualisation.docker.enable = true; - # Define a user account. Don't forget to set a password with ‘passwd’. users.users.random = { isNormalUser = true; @@ -133,5 +130,9 @@ # Enable sshd service. services.openssh.enable = true; + # Enable virtualization features + virtualisation.docker.enable = true; + virtualisation.vmware.host.enable = true; + system.stateVersion = "24.05"; }