diff --git a/hosts/nixos-test/configuration.nix b/hosts/nixos-test/configuration.nix index 745a2ef..fabfec8 100644 --- a/hosts/nixos-test/configuration.nix +++ b/hosts/nixos-test/configuration.nix @@ -35,6 +35,12 @@ forwardPorts = [ { from = "host"; host.port = 8888; guest.port = 80; } ]; + sharedDirectories = { + home = { + source = "/home/florian"; + target = "/mnt/shared_home"; + }; + }; }; }; @@ -44,6 +50,12 @@ openssh.enable = true; }; + desktop = { + plasma = { + enable = true; + }; + }; + hardware = { keymaps.layout = "us"; };