punkfairie
9408679e81
Switch to nixfmt as when I was adding treesitter injected lang hints, Alejandra was not formatting those comments in a way I liked. Turns out I like the nixfmt style in general better.
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 &
|
|
'';
|
|
};
|
|
}
|