Those who understand the current situation at hand:
This commit is contained in:
parent
b0c9a7c28c
commit
2aae988918
1 changed files with 9 additions and 20 deletions
|
@ -4,25 +4,14 @@
|
||||||
ags.url = "github:aylur/ags";
|
ags.url = "github:aylur/ags";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ags }: let
|
outputs = { self, nixpkgs, ags }:
|
||||||
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
in {
|
in {
|
||||||
devShells.${system}.default = pkgs.mkShell {
|
devShells.${system}.default = pkgs.mkShell {
|
||||||
buildInputs = [
|
buildInputs =
|
||||||
pkgs.typescript-language-server
|
[ pkgs.typescript-language-server ags.packages.${system}.agsFull ];
|
||||||
# includes astal3 astal4 astal-io by default
|
|
||||||
(ags.packages.${system}.default.overrideAttrs {
|
|
||||||
extraPackages = [
|
|
||||||
ags.packages.${pkgs.system}.hyprland
|
|
||||||
ags.packages.${pkgs.system}.mpris
|
|
||||||
ags.packages.${pkgs.system}.battery
|
|
||||||
ags.packages.${pkgs.system}.wireplumber
|
|
||||||
ags.packages.${pkgs.system}.network
|
|
||||||
ags.packages.${pkgs.system}.tray
|
|
||||||
];
|
|
||||||
})
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue