removed hyprland & added garbage collection
This commit is contained in:
parent
1758a0f710
commit
f30534ffa9
1 changed files with 13 additions and 5 deletions
|
@ -171,10 +171,11 @@
|
||||||
# services.xserver.displayManager.lightdm.enable = true;
|
# services.xserver.displayManager.lightdm.enable = true;
|
||||||
|
|
||||||
# Hyperland
|
# Hyperland
|
||||||
programs.hyprland = {
|
# programs.hyprland = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
xwayland.enable = true;
|
# xwayland.enable = true;
|
||||||
};
|
# };
|
||||||
|
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
WLR_NO_HARDWARE_CURSORS = "1"; # if mouse cursor invisible
|
WLR_NO_HARDWARE_CURSORS = "1"; # if mouse cursor invisible
|
||||||
|
@ -191,7 +192,14 @@
|
||||||
# Enabling Pipewire for Audio Support
|
# Enabling Pipewire for Audio Support
|
||||||
services.pipewire.enable = true;
|
services.pipewire.enable = true;
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
|
|
||||||
|
# Automatic Garbage collection
|
||||||
|
nix.gc = {
|
||||||
|
automatic = true;
|
||||||
|
dates = "weekly";
|
||||||
|
options = "--delete-older-than 7d";
|
||||||
|
};
|
||||||
#Hardwarebeschleunigung f@r wayland
|
#Hardwarebeschleunigung f@r wayland
|
||||||
# hardware.opengl = {
|
# hardware.opengl = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
|
|
Loading…
Reference in a new issue