mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
updated moved settings
This commit is contained in:
parent
9931737400
commit
18b913cc8e
2 changed files with 17 additions and 8 deletions
|
@ -17,17 +17,23 @@
|
||||||
|
|
||||||
programs.hyprland.enable = true;
|
programs.hyprland.enable = true;
|
||||||
|
|
||||||
services.xserver = {
|
services = {
|
||||||
enable = true;
|
xserver = {
|
||||||
xkb.layout = "us";
|
enable = true;
|
||||||
xkb.options = "caps:super";
|
xkb.layout = "us";
|
||||||
|
xkb.options = "caps:super";
|
||||||
|
|
||||||
desktopManager.plasma5.enable = true;
|
desktopManager.plasma5.enable = true;
|
||||||
displayManager.defaultSession = "plasma";
|
};
|
||||||
|
|
||||||
displayManager.sddm.enable = true;
|
displayManager = {
|
||||||
|
|
||||||
|
defaultSession = "plasma";
|
||||||
|
sddm.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
libinput = {
|
libinput = {
|
||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
touchpad = {
|
touchpad = {
|
||||||
tapping = true;
|
tapping = true;
|
||||||
|
@ -42,6 +48,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Android Debugging interface
|
# Android Debugging interface
|
||||||
programs.adb.enable = true;
|
programs.adb.enable = true;
|
||||||
services.udev.packages = [
|
services.udev.packages = [
|
||||||
|
|
|
@ -50,7 +50,8 @@
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
# Resolves jellyfin black screen under hyprland
|
# Resolves jellyfin black screen under hyprland
|
||||||
# See also: https://github.com/jellyfin/jellyfin-media-player/issues/165#issuecomment-1030690851
|
# See also: https://github.com/jellyfin/jellyfin-media-player/issues/165#issuecomment-1030690851
|
||||||
QT_QPA_PLATFORM = "xcb";
|
# Now set by hyperland
|
||||||
|
# QT_QPA_PLATFORM = "xcb";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue