Bruno BELANYI
570349e80f
All checks were successful
ci/woodpecker/push/check Pipeline was successful
My profiles are actually just "special" NixOS modules in that they orchestrate settings that usually span the NixOS/home-manager boundary, or otherwise set up configurations from multiple modules at once.
18 lines
345 B
Nix
18 lines
345 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.profiles.gtk;
|
|
in
|
|
{
|
|
options.my.profiles.gtk = with lib; {
|
|
enable = mkEnableOption "gtk profile";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
# Allow setting GTK configuration using home-manager
|
|
programs.dconf.enable = true;
|
|
|
|
# GTK theme configuration
|
|
my.home.gtk.enable = true;
|
|
};
|
|
}
|