adding ags

This commit is contained in:
Chris Cochrun 2024-06-14 16:29:18 -05:00
parent 58a920fa73
commit 984191eebb
4 changed files with 61 additions and 1 deletions

View file

@ -20,6 +20,10 @@
url = "github:elkowar/eww";
inputs.nixpkgs.follows = "nixpkgs";
};
ags = {
url = "github:Aylur/ags";
inputs.nixpkgs.follows = "nixpkgs";
};
emacs = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
@ -56,6 +60,7 @@
nix-bitcoin,
libre-presenter,
eww,
ags,
rust-overlay, ... }:
let
system = "x86_64-linux";
@ -101,6 +106,7 @@
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { inherit ags; };
home-manager.users.chris = import ./home/home.nix;
}
];