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 =
"/dev/disk/by-uuid/52d1be6d-b32f-41e0-a6d7-2ff52599fe7c";
powerManagement.powertop.enable = true;
services.tlp.enable = true;
networking.hostName = "adrastea"; # Define your hostname.
# 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
environment.sessionVariables.NIXOS_OZONE_WL = "1";

View file

@ -1,75 +1,71 @@
{
"input": {
"blocklist": [],
"compressor#0": {
"attack": 20.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"bypass": false,
"dry": -100.0,
"hpf-frequency": 10.0,
"hpf-mode": "off",
"input-gain": 0.0,
"knee": -6.0,
"lpf-frequency": 20000.0,
"lpf-mode": "off",
"makeup": 0.0,
"mode": "Downward",
"output-gain": 0.0,
"ratio": 4.0,
"release": 100.0,
"release-threshold": -100.0,
"sidechain": {
"lookahead": 0.0,
"mode": "RMS",
"preamp": 0.0,
"reactivity": 10.0,
"source": "Middle",
"stereo-split-source": "Left/Right",
"type": "Feed-forward"
},
"stereo-split": false,
"threshold": -12.0,
"wet": 0.0
},
"limiter#0": {
"alr": false,
"alr-attack": 5.0,
"alr-knee": 0.0,
"alr-release": 50.0,
"attack": 5.0,
"bypass": false,
"dithering": "None",
"external-sidechain": false,
"gain-boost": true,
"input-gain": 0.0,
"lookahead": 5.0,
"mode": "Herm Thin",
"output-gain": 0.0,
"oversampling": "None",
"release": 5.0,
"sidechain-preamp": 0.0,
"stereo-link": 100.0,
"threshold": 0.0
},
"plugins_order": [
"limiter#0",
"compressor#0",
"reverb#0"
],
"reverb#0": {
"amount": -12.0,
"bass-cut": 300.0,
"bypass": false,
"decay-time": 1.5,
"diffusion": 0.5,
"dry": 0.0,
"hf-damp": 5000.0,
"input-gain": 0.0,
"output-gain": 0.0,
"predelay": 0.0,
"room-size": "Large",
"treble-cut": 5000.0
}
"input": {
"blocklist": [],
"compressor#0": {
"attack": 20.0,
"boost-amount": 6.0,
"boost-threshold": -72.0,
"bypass": false,
"dry": -100.0,
"hpf-frequency": 10.0,
"hpf-mode": "off",
"input-gain": 0.0,
"knee": -6.0,
"lpf-frequency": 20000.0,
"lpf-mode": "off",
"makeup": 0.0,
"mode": "Downward",
"output-gain": 0.0,
"ratio": 4.0,
"release": 100.0,
"release-threshold": -100.0,
"sidechain": {
"lookahead": 0.0,
"mode": "RMS",
"preamp": 0.0,
"reactivity": 10.0,
"source": "Middle",
"stereo-split-source": "Left/Right",
"type": "Feed-forward"
},
"stereo-split": false,
"threshold": -12.0,
"wet": 0.0
},
"limiter#0": {
"alr": false,
"alr-attack": 5.0,
"alr-knee": 0.0,
"alr-release": 50.0,
"attack": 5.0,
"bypass": false,
"dithering": "None",
"external-sidechain": false,
"gain-boost": true,
"input-gain": 0.0,
"lookahead": 5.0,
"mode": "Herm Thin",
"output-gain": 0.0,
"oversampling": "None",
"release": 5.0,
"sidechain-preamp": 0.0,
"stereo-link": 100.0,
"threshold": 0.0
},
"plugins_order": ["limiter#0", "compressor#0", "reverb#0"],
"reverb#0": {
"amount": -12.0,
"bass-cut": 300.0,
"bypass": false,
"decay-time": 0.4,
"diffusion": 0.5,
"dry": 0.0,
"hf-damp": 5000.0,
"input-gain": 0.0,
"output-gain": 0.0,
"predelay": 0.0,
"room-size": "Large",
"treble-cut": 5000.0
}
}
}

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
@ -286,4 +287,10 @@
"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 ];
};
}