turn home/default.nix into skeleton, configure git

This commit is contained in:
Sean Kovacs 2026-03-05 10:22:41 -05:00
commit b61c42aeba
Signed by: sckova
GPG key ID: 00F325187C68651A
5 changed files with 119 additions and 102 deletions

View file

@ -10,6 +10,13 @@
./systemd.nix
];
home.packages = with pkgs; [
# kde and kde theming
adwaita-icon-theme
morewaita-icon-theme
# kde-rounded-corners
];
home.file = {
".icons/default/index.theme" = {
text = ''
@ -22,6 +29,24 @@
};
};
services = {
spotifyd = {
enable = true;
settings = {
global = {
device_type = "computer";
dbus_type = "session";
disable_discovery = true;
use_mpris = true;
bitrate = 320;
initial_volume = 100;
volume_normalisation = true;
normalisation_pregain = 0;
};
};
};
};
dconf.settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";