nixos/home/gnome/home.nix

17 lines
151 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.passthrough.gnome;
2025-01-13 11:52:09 +08:00
in
{
imports = [
./impl/home.nix
./impl/dconf.nix
];
}