changed everything to default.nix

This commit is contained in:
biscuit
2025-05-21 11:11:26 -05:00
parent 7e77b1acd4
commit 694042f027
16 changed files with 2 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
{ inputs, pkgs, system, ... }: {
imports = [ inputs.ags.homeManagerModules.default ];
programs.ags = {
enable = true;
configDir = ./biscuit;
extraPackages = let
agsPkgs = inputs.ags.packages.${system};
in with pkgs; [
agsPkgs.battery
agsPkgs.hyprland
agsPkgs.mpris
agsPkgs.wireplumber
agsPkgs.notifd
agsPkgs.apps
agsPkgs.network
agsPkgs.tray
fzf
];
};
}