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