From 94573d837b77bb977c09d3e5a83f8647abb6a101 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Mon, 29 Jul 2024 16:23:18 +0200 Subject: [PATCH] feat: enable dconf for lollypop settings --- home/default.nix | 18 ++++++++++++++++++ hosts/brontes/configuration.nix | 1 + 2 files changed, 19 insertions(+) diff --git a/home/default.nix b/home/default.nix index 1dd6bae..6ca078e 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,4 +1,5 @@ # This file contains default settings used across different systems +{ lib, ... }: { imports = [ ./ssh @@ -7,4 +8,21 @@ ./vscode ./foot.nix ]; + + dconf.settings = { + "org/gnome/Lollypop" = { + network-access = true; + artist-artwork = true; + dark-ui = true; + import-advanced-artist-tags = true; + force-single-column = false; + show-compilations-in-album-view = true; + show-compilations = false; + hd-artwork = true; + shown-playlists = [ + (-3) + (-7) + ]; + }; + }; } diff --git a/hosts/brontes/configuration.nix b/hosts/brontes/configuration.nix index 8025a3e..875fcd1 100644 --- a/hosts/brontes/configuration.nix +++ b/hosts/brontes/configuration.nix @@ -47,6 +47,7 @@ }; programs = { + dconf.enable = true; steam.enable = true; fish.enable = true; firefox.enable = true;