add gauntlet

closes #4
This commit is contained in:
Seaswimmer 2024-12-20 12:18:29 -05:00
parent d1bb61dac8
commit b50832b788
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
2 changed files with 14 additions and 0 deletions

View file

@ -39,6 +39,10 @@
};
nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions";
catppuccin-vsc.url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
gauntlet = {
url = "github:/schradert/gauntlet/b2d3c9617ef01af2f6951dafaeb2e97fdeee943d";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
@ -55,6 +59,7 @@
overlays = [
inputs.catppuccin-vsc.overlays.default
inputs.nur.overlays.default
inputs.gauntlet.overlays.default
];
config.allowUnfree = true;
};

View file

@ -0,0 +1,9 @@
{ inputs, ... }:
{
imports = [ inputs.gauntlet.homeManagerModules.default ];
programs.gauntlet = {
enable = true;
service.enable = true;
config = { };
};
}