Compare commits

...

3 commits

Author SHA1 Message Date
da7a98cbc7
feat: decrease easyeffects reverb 2024-08-10 22:38:55 -07:00
45922f8770
feat: add xdg-desktop-portal 2024-08-10 18:51:56 -07:00
fed385b023
feat: switch from powertop to tlp 2024-08-10 17:05:24 -07:00
4 changed files with 77 additions and 74 deletions

View file

@ -47,7 +47,7 @@
boot.initrd.luks.devices."luks-52d1be6d-b32f-41e0-a6d7-2ff52599fe7c".device = boot.initrd.luks.devices."luks-52d1be6d-b32f-41e0-a6d7-2ff52599fe7c".device =
"/dev/disk/by-uuid/52d1be6d-b32f-41e0-a6d7-2ff52599fe7c"; "/dev/disk/by-uuid/52d1be6d-b32f-41e0-a6d7-2ff52599fe7c";
powerManagement.powertop.enable = true; services.tlp.enable = true;
networking.hostName = "adrastea"; # Define your hostname. networking.hostName = "adrastea"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.

View file

@ -181,7 +181,7 @@
}; };
}; };
powerManagement.powertop.enable = true; services.tlp.enable = true;
# tells electron apps to use Wayland # tells electron apps to use Wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";

View file

@ -52,16 +52,12 @@
"stereo-link": 100.0, "stereo-link": 100.0,
"threshold": 0.0 "threshold": 0.0
}, },
"plugins_order": [ "plugins_order": ["limiter#0", "compressor#0", "reverb#0"],
"limiter#0",
"compressor#0",
"reverb#0"
],
"reverb#0": { "reverb#0": {
"amount": -12.0, "amount": -12.0,
"bass-cut": 300.0, "bass-cut": 300.0,
"bypass": false, "bypass": false,
"decay-time": 1.5, "decay-time": 0.4,
"diffusion": 0.5, "diffusion": 0.5,
"dry": 0.0, "dry": 0.0,
"hf-damp": 5000.0, "hf-damp": 5000.0,

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{ {
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
@ -286,4 +287,10 @@
"hyprctl dispatch dpms on"; # to avoid having to press a key twice to turn on the display. "hyprctl dispatch dpms on"; # to avoid having to press a key twice to turn on the display.
}; };
}; };
xdg.portal = {
enable = true;
configPackages = [ pkgs.xdg-desktop-portal-hyprland ];
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
} }