punkfairie
ceb4bf3cde
Instead of having separate folders for each program with a default.nix inside, moved modules into programs/services/xorg respectively. Xdg was moved to the root home folder as it makes the most sense there.
19 lines
316 B
Nix
19 lines
316 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"
|
|
copyq &
|
|
mpd &
|
|
pidgin &
|
|
'';
|
|
};
|
|
}
|