This commit is contained in:
Nico
2024-10-31 10:33:46 +01:00
commit ad6d893cb0
237 changed files with 19793 additions and 0 deletions

21
packages/ags/default.nix Normal file
View File

@@ -0,0 +1,21 @@
{ inputs, pkgs, lib, config, ... }:
{
imports = [ inputs.ags.homeManagerModules.default ];
programs.ags = {
enable = true;
extraPackages = with pkgs; [
dart-sass
brightnessctl
wl-clipboard
];
};
home.file.".config/ags" = {
source = ./config;
recursive = true;
};
}