2 Commits

Author SHA1 Message Date
kenji ac265015eb add(TODO): stuff 2026-01-03 14:54:19 -06:00
kenji bb97da851d add(nixos): lact for amd 2026-01-03 14:54:09 -06:00
3 changed files with 9 additions and 4 deletions
+3 -3
View File
@@ -16,13 +16,13 @@
"hyprpm reload -n"
"vicinae server"
"systemctl --user start hyprpolkitagent"
"hyprsunset -t 4500"
"hyprsunset -t 4500" # TODO: must be optional
# apps
"fcitx5 -d --replace"
"fcitx5 -d --replace" # TODO: find a way to implement this line on fcitx5 app instead
"[workspace special:preload silent] uwsm app -- xdg-terminal-exec"
"[workspace 1] uwsm app -- ghostty -e bash -c 'fastfetch; exec $SHELL'"
"[workspace 1] uwsm app -- ghostty -e bash -c 'fastfetch; exec $SHELL'" # TODO: must be xdg-terminal-exec, or default user terminal
"[workspace special:steam silent] uwsm app -- steam"
];
};
+1
View File
@@ -24,6 +24,7 @@
'';
in {
imports = [
# TODO: must be an option a user can set of which music player to use
../../apps/jellyfin-tui
../../apps/cava
];
+5 -1
View File
@@ -1,3 +1,7 @@
{pkgs, ...}: {
hardware.amdgpu.initrd.enable = true;
hardware.amdgpu = {
overdrive.enable = true;
initrd.enable = true;
};
services.lact.enable = true;
}