marleyos/home/xorg/xsession.nix

18 lines
300 B
Nix

{ ... }:
{
home.keyboard.options = [ "apple:alupckeys" ];
xsession = {
enable = true;
numlock.enable = true;
# TODO: Switch to autorandr
profileExtra = # sh
''
sudo mount -a
"$HOME/.config/xrandr/desktop.sh"
mpd &
pidgin &
'';
};
}