From a3a4c5e70543d8e845609fb6aa9130f8483fbca2 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Fri, 20 Dec 2024 15:30:39 +0100 Subject: [PATCH] nixos-test: Add sharedDirectories + Reenable plasma --- hosts/nixos-test/configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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"; };