add: obs and firefox, fix: desktop and greeter QoL

This commit is contained in:
2025-02-21 19:44:52 +09:00
parent a4ff711bc3
commit fd6281b9a0
12 changed files with 87 additions and 14 deletions
+4 -2
View File
@@ -2,10 +2,12 @@
imports = [
./nix.nix
./boot.nix
./uwsm.nix
./locale.nix
./network.nix
./fonts.nix
./sound.nix
./uwsm.nix
./regreet.nix
];
}
}
+24
View File
@@ -0,0 +1,24 @@
{
programs.regreet = {
enable = true;
settings = {
appearance = {
greeting_msg = "Welcome back!";
};
widget = {
clock = {
format = "%H:%M";
resolution = "100ms";
timezone = "Asia/Tokyo";
label_width = 150;
};
};
GTK = {
application_prefer_dark_theme = true;
};
background = {
path = "/usr/share/wallpaper/arknights-image-01.png";
};
};
};
}