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
|
# xorg layout
|
||||||
# change to needed
|
# change to needed
|
||||||
services.xserver.layout = "us";
|
services.xserver.xkb.layout = "us";
|
||||||
services.xserver.xkbOptions = "grp:alt_shift_toggle, ctrl:swapcaps";
|
services.xserver.xkb.options = "grp:alt_shift_toggle, ctrl:swapcaps";
|
||||||
|
|
||||||
# already sold soul to corporations \_o_/
|
# already sold soul to corporations \_o_/
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
|
@ -24,6 +24,24 @@ in {
|
||||||
# keyring
|
# keyring
|
||||||
services.gnome.gnome-keyring.enable = true;
|
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 = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
windowManager = {
|
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; [
|
users.users.sako.packages = with pkgs; [
|
||||||
rofi
|
rofi
|
||||||
|
|
Loading…
Reference in a new issue