10 lines
174 B
Nix
10 lines
174 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
imports = [ inputs.gauntlet.homeManagerModules.default ];
|
||
|
programs.gauntlet = {
|
||
|
enable = true;
|
||
|
service.enable = true;
|
||
|
config = { };
|
||
|
};
|
||
|
}
|