marleyos/home/xsession/default.nix

18 lines
289 B
Nix
Raw Normal View History

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