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