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