1{
2 flake.modules.nixos.desktop =
3 { pkgs, ... }:
4 {
5 environment.systemPackages = [ pkgs.vanilla-dmz ];
6 hjem.extraModules = [
7 {
8 niri.extraConfig = ''
9 cursor {
10 xcursor-theme "Vanilla-DMZ"
11 xcursor-size 32
12 hide-when-typing
13 }
14 '';
15 }
16 ];
17 };
18}