chore: reorg

This commit is contained in:
js0ny 2026-03-15 21:07:36 +00:00
parent e0a023da4f
commit 1b5c26bc04
54 changed files with 411 additions and 227 deletions

View file

@ -0,0 +1,19 @@
{
pkgs,
config,
...
}: let
username = config.home.username;
in {
# Note: lollypop is buggy with CJK filenames.
# 部分 CJK 文字会显示成 ??,可能和文件的编码有关?而且似乎是 GTK4 都会GNOME 全家桶的音乐播放器也有这个问题
home.packages = with pkgs; [lollypop];
dconf.settings = {
"org/gnome/Lollypop" = {
music-uris = [
"file:///home/${username}/Music"
];
notification-flag = 2;
};
};
}