15 lines
151 B
Nix
15 lines
151 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.profiles;
|
|
in {
|
|
imports = [
|
|
./gterminal.nix
|
|
];
|
|
options.profiles = {};
|
|
config = {};
|
|
}
|