nixos/home/gnome/home.nix
2025-01-13 11:52:09 +08:00

17 lines
151 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.passthrough.gnome;
in
{
imports = [
./impl/home.nix
./impl/dconf.nix
];
}