flake: add ags

This commit is contained in:
Anthony Rodriguez 2024-12-01 22:42:34 +01:00
parent 378ac8e01c
commit c5fd112c30
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 53 additions and 0 deletions

View file

@ -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",

View file

@ -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 = {