summaryrefslogtreecommitdiff
path: root/home/wilkuu.nix
blob: 1e744cdfa13539c78bb2f4d05db9f81560bc80cd (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
25
26
27
28
29
{
  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;
}