Basic gnome customizations
This commit is contained in:
@@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
# wm
|
# wm
|
||||||
hyprland.enable = true;
|
hyprland.enable = true;
|
||||||
|
gnome.enable = true;
|
||||||
|
|
||||||
# style
|
# style
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
|
22
modules/user/gnome/default.nix
Normal file
22
modules/user/gnome/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user