blob: 914824e532b2c2d0e04ca1053724965940b658b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ 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;
};
};
home.username = "wilkuu";
home.homeDirectory = "/home/wilkuu";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}
|