summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2026-04-29 23:34:40 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2026-04-29 23:34:40 +0200
commit638ac9d6d2e6d05a4c6c973e3db235a952d92000 (patch)
treef67579594a71a93065f4ecf827799aae41c97869 /users
parent0785f0c5d36e442a7d65a5e35378c09903d39211 (diff)
Threshold host and nix flake update.
Diffstat (limited to 'users')
-rw-r--r--users/wilkuu-server.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/users/wilkuu-server.nix b/users/wilkuu-server.nix
index c1bbc92..5df7867 100644
--- a/users/wilkuu-server.nix
+++ b/users/wilkuu-server.nix
@@ -1,6 +1,7 @@
{
pkgs,
lib,
+ config,
...
}:
{
@@ -35,17 +36,16 @@
homeapps.presets = lib.genAttrs [ "base" "utils" "browser" ] (_: {
enable = true;
});
- # homeapps.vnc = true;
- # services.wayvnc = {
- # enable = true;
- # autoStart = false;
- # settings = {
- # # Todo, bind to vpn and LAN explicitly somehow
- # address = "0.0.0.0";
- # port = 5900;
- # };
- # };
+ services.wayvnc = lib.mkIf config.addons.desktop.enable {
+ enable = true;
+ autoStart = false;
+ settings = {
+ # Todo, bind to vpn and LAN explicitly somehow
+ address = "0.0.0.0";
+ port = 5900;
+ };
+ };
home.username = "wilkuu";
home.homeDirectory = "/home/wilkuu";