diff --git a/home/default.nix b/home/default.nix index b9a6fb1..488bf55 100644 --- a/home/default.nix +++ b/home/default.nix @@ -7,6 +7,8 @@ home.username = "marley"; home.homeDirectory = "/home/marley"; + home.language.base = "en_US.UTF-8"; + # Tell nix what version it is. nix.package = pkgs.nix; diff --git a/home/xsession/default.nix b/home/xsession/default.nix new file mode 100644 index 0000000..388faba --- /dev/null +++ b/home/xsession/default.nix @@ -0,0 +1,16 @@ +{...}: { + xsession = { + enable = true; + + numlock.enable = true; + # TODO: Switch to autorandr + profileExtra = '' + sudo mount -a + "$HOME/.config/xrandr/desktop.sh" + setxkbmap -option "apple:alupckeys" + copyq & + mpd & + pidgin & + ''; + }; +}