parent
d1bb61dac8
commit
b50832b788
2 changed files with 14 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
|
|
9
home-manager/gauntlet.nix
Normal file
9
home-manager/gauntlet.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ inputs, ... }:
|
||||
{
|
||||
imports = [ inputs.gauntlet.homeManagerModules.default ];
|
||||
programs.gauntlet = {
|
||||
enable = true;
|
||||
service.enable = true;
|
||||
config = { };
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue