nixos-test: Add sharedDirectories + Reenable plasma
All checks were successful
check / check (push) Successful in 31s
All checks were successful
check / check (push) Successful in 31s
This commit is contained in:
parent
0d907af539
commit
a3a4c5e705
1 changed files with 12 additions and 0 deletions
|
@ -35,6 +35,12 @@
|
||||||
forwardPorts = [
|
forwardPorts = [
|
||||||
{ from = "host"; host.port = 8888; guest.port = 80; }
|
{ from = "host"; host.port = 8888; guest.port = 80; }
|
||||||
];
|
];
|
||||||
|
sharedDirectories = {
|
||||||
|
home = {
|
||||||
|
source = "/home/florian";
|
||||||
|
target = "/mnt/shared_home";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -44,6 +50,12 @@
|
||||||
openssh.enable = true;
|
openssh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
desktop = {
|
||||||
|
plasma = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
keymaps.layout = "us";
|
keymaps.layout = "us";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue