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