16 lines
184 B
Nix
16 lines
184 B
Nix
|
{ inputs
|
||
|
, lib
|
||
|
, config
|
||
|
, pkgs
|
||
|
, ...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
imports = [ inputs.ags.homeManagerModules.default ];
|
||
|
programs.ags = {
|
||
|
enable = true;
|
||
|
configDir = ./config;
|
||
|
};
|
||
|
}
|
||
|
|