home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

xsession.nix (263B)


      1 { config, pkgs, ... }:
      2 
      3 {
      4   xsession = {
      5     enable = true;
      6     initExtra = ''
      7       ${pkgs.xorg.xmodmap}/bin/xmodmap ${config.home.homeDirectory}.Xmodmap &
      8     '';
      9     pointerCursor = {
     10       package = pkgs.vanilla-dmz;
     11       name = "Vanilla-DMZ";
     12     };
     13   };
     14 }