blob: 9547aec4dd18019845ee2de73f5bad4d63576d8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ config ,pkgs, hostconfig, ... }: {
imports = [../home-modules];
homeapps.presets.full.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;
};
};
homesv.vdirsyncer.enable = true;
home.username = "wilkuu";
home.homeDirectory = "/home/wilkuu";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}
|