Basic gnome customizations

This commit is contained in:
Emmet
2025-04-18 09:56:25 -05:00
parent 99435866a4
commit 7c59e8ba92
2 changed files with 23 additions and 0 deletions

View File

@@ -29,6 +29,7 @@
# wm
hyprland.enable = true;
gnome.enable = true;
# style
stylix.enable = true;

View File

@@ -0,0 +1,22 @@
{ inputs, pkgs, config, lib, ... }:
let
cfg = config.userSettings.gnome;
in
{
options = {
systemSettings.gnome = {
enable = lib.mkEnableOption "Enable gnome config";
};
};
config = lib.mkIf cfg.enable {
stylix.targets.gnome.enable = true;
stylix.targets.gtk.enable = true;
dconf.settings = {
"org/gnome/settings-daemon/plugins/power" = {
ambient-enabled = false;
};
};
};
}