fix (home/graphical)!: fix broken option dependency

This commit is contained in:
Henri Saudubray 2026-01-22 10:17:38 +01:00
parent 23aaa96938
commit 773ebc511d
Signed by: hms
GPG key ID: 7065F57ED8856128

View file

@ -1,6 +1,5 @@
{ pkgs, lib, config, ... }:
{ pkgs, ... }:
{
config = lib.mkIf config.graphical.enable {
home = {
packages =
with pkgs;
@ -37,6 +36,8 @@
};
};
programs.firefox.enable = true;
programs.librewolf = {
enable = true;
profiles.default = {
@ -99,5 +100,4 @@
binding = "<Super>d";
};
};
};
}