diff --git a/flake.lock b/flake.lock index deb0836..b9f84fe 100644 --- a/flake.lock +++ b/flake.lock @@ -23,6 +23,48 @@ "type": "github" } }, + "ags": { + "inputs": { + "astal": "astal", + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1732307740, + "narHash": "sha256-ZDsYdZOtg5qkK/wfLLB83B3SI+fE32S+/6Ey0ggHODM=", + "owner": "aylur", + "repo": "ags", + "rev": "81159966eb8b39b66c3efc133982fd76920c9605", + "type": "github" + }, + "original": { + "owner": "aylur", + "repo": "ags", + "type": "github" + } + }, + "astal": { + "inputs": { + "nixpkgs": [ + "ags", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1731952585, + "narHash": "sha256-Sh1E7sJd8JJM3PCU1ZOei/QWz97OLCENIi2rTRoaniw=", + "owner": "aylur", + "repo": "astal", + "rev": "664c7a4ddfcf48c6e8accd3c33bb94424b0e8609", + "type": "github" + }, + "original": { + "owner": "aylur", + "repo": "astal", + "type": "github" + } + }, "basix": { "inputs": { "flake-compat": "flake-compat", @@ -2604,6 +2646,7 @@ "root": { "inputs": { "agenix": "agenix", + "ags": "ags", "basix": "basix", "deploy-rs": "deploy-rs", "firefox-addons": "firefox-addons", diff --git a/flake.nix b/flake.nix index ebd8458..3af2bee 100644 --- a/flake.nix +++ b/flake.nix @@ -6,6 +6,7 @@ nixpkgs, systems, agenix, + ags, deploy-rs, treefmt-nix, ... @@ -20,6 +21,11 @@ pkgs.git deploy-rs.packages.${pkgs.system}.default agenix.packages.${pkgs.system}.default + (ags.packages.${pkgs.system}.default.override { + extraPackages = [ + ags.packages.${pkgs.system}.astal3 + ]; + }) ]; }; }); @@ -52,6 +58,10 @@ url = "github:ryantm/agenix"; inputs.nixpkgs.follows = "nixpkgs"; }; + ags = { + url = "github:aylur/ags"; + inputs.nixpkgs.follows = "nixpkgs"; + }; basix.url = "github:notashelf/basix"; deploy-rs.url = "github:serokell/deploy-rs"; firefox-addons = {