turn home/default.nix into skeleton, configure git
This commit is contained in:
parent
6b3b65dac5
commit
864167a091
5 changed files with 119 additions and 102 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue