Merge branch 'main' into hyprpanel

This commit is contained in:
Miguel Palhas
2025-01-13 21:38:21 +00:00
2 changed files with 26 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
dconf
];
services.darkman = {
enable = true;
darkModeScripts = {
gtk-theme = ''
${pkgs.dconf}/bin/dconf write\
/org/gnome/desktop/interface/color-scheme "'prefer-dark'"
'';
};
lightModeScripts = {
gtk-theme = ''
${pkgs.dconf}/bin/dconf write\
/org/gnome/desktop/interface/color-scheme "'prefer-light'"
'';
};
};
}
+4 -1
View File
@@ -1,6 +1,9 @@
{ pkgs, ... }:
{
imports = [ ./firefox.nix ];
imports = [
./firefox.nix
./darkman.nix
];
home.packages = with pkgs; [
# various