Yeah screw the nixpkgs exwm
Roll my own. It's not that hard
This commit is contained in:
parent
90fa38c575
commit
a81e9f750b
2 changed files with 11 additions and 5 deletions
|
|
@ -7,9 +7,17 @@
|
|||
networkmanagerapplet
|
||||
];
|
||||
|
||||
services.xserver.windowManager.exwm = {
|
||||
enable = true;
|
||||
enableDefaultConfig = false;
|
||||
services.xserver = {
|
||||
displayManager = {
|
||||
defaultSession = "none+my-exwm";
|
||||
};
|
||||
|
||||
windowManager.session = [{
|
||||
name = "my-exwm";
|
||||
start = ''
|
||||
${pkgs.emacs-unstable}/bin/emacs -l /home/benson/.emacs.d/init.el
|
||||
'';
|
||||
}];
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
|
|
|||
|
|
@ -33,8 +33,6 @@
|
|||
displayManager = {
|
||||
sddm.enable = true;
|
||||
startx.enable = true;
|
||||
|
||||
defaultSession = "none+exwm";
|
||||
};
|
||||
|
||||
# Configure keymap in X11
|
||||
|
|
|
|||
Loading…
Reference in a new issue