fix bspwm bs
This commit is contained in:
parent
1a3c132187
commit
513b62e6e6
2 changed files with 20 additions and 15 deletions
|
@ -83,8 +83,8 @@
|
|||
|
||||
# xorg layout
|
||||
# change to needed
|
||||
services.xserver.layout = "us";
|
||||
services.xserver.xkbOptions = "grp:alt_shift_toggle, ctrl:swapcaps";
|
||||
services.xserver.xkb.layout = "us";
|
||||
services.xserver.xkb.options = "grp:alt_shift_toggle, ctrl:swapcaps";
|
||||
|
||||
# already sold soul to corporations \_o_/
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
|
|
@ -24,6 +24,24 @@ in {
|
|||
# keyring
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
# ????????????
|
||||
serices.libinput = {
|
||||
enable = true;
|
||||
# no mouse accel
|
||||
mouse = {
|
||||
accelProfile = "flat";
|
||||
};
|
||||
|
||||
# no touchpad accel
|
||||
touchpad = {
|
||||
accelProfile = "flat";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# why???????????????????????
|
||||
services.displayManager.defaultSession = "none+bspwm";
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
windowManager = {
|
||||
|
@ -47,19 +65,6 @@ in {
|
|||
};
|
||||
};
|
||||
};
|
||||
libinput = {
|
||||
enable = true;
|
||||
|
||||
# no mouse accel
|
||||
mouse = {
|
||||
accelProfile = "flat";
|
||||
};
|
||||
|
||||
# no touchpad accel
|
||||
touchpad = {
|
||||
accelProfile = "flat";
|
||||
};
|
||||
};
|
||||
};
|
||||
users.users.sako.packages = with pkgs; [
|
||||
rofi
|
||||
|
|
Loading…
Reference in a new issue