fix(ags): use my fork until it gets merged

This commit is contained in:
matt1432 2024-05-01 10:21:28 -04:00
parent b01190a532
commit 5285b166b2
2 changed files with 12 additions and 8 deletions

View file

@ -7,15 +7,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1713301451, "lastModified": 1714360512,
"narHash": "sha256-LzYVqEukjOJjm4HGFe6rtHBiuJxAyPqd2MY1k5ci9QU=", "narHash": "sha256-+snqxingQ64XHgIvofJbr+2uKXA4AQ1s4G6XEj7knck=",
"owner": "Aylur", "owner": "matt1432",
"repo": "ags", "repo": "ags",
"rev": "33bcaf34d5277031ecb97047fb8ddd44abd8d80e", "rev": "15bdba83cd4c2c70e642731b3c0c9f03708310b7",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "Aylur", "owner": "matt1432",
"ref": "fix-hypr-path",
"repo": "ags", "repo": "ags",
"type": "github" "type": "github"
} }

View file

@ -93,7 +93,7 @@
alejandra alejandra
git git
(pkgs.writeShellScriptBin "mkIso" (lib.concatStrings [ (writeShellScriptBin "mkIso" (lib.concatStrings [
"nix build $(realpath /etc/nixos)#nixosConfigurations." "nix build $(realpath /etc/nixos)#nixosConfigurations."
"live-image.config.system.build.isoImage" "live-image.config.system.build.isoImage"
])) ]))
@ -102,7 +102,7 @@
ags = pkgs.mkShell { ags = pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
nodejs_18 nodejs_latest
]; ];
}; };
@ -293,9 +293,12 @@
## AGS ## AGS
ags = { ags = {
type = "github"; type = "github";
owner = "Aylur"; owner = "matt1432"; # "Aylur";
repo = "ags"; repo = "ags";
# FIXME: wait for this to get merged
ref = "fix-hypr-path";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };