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";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ags }: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
devShells.${system}.default = pkgs.mkShell {
|
||||
buildInputs = [
|
||||
pkgs.typescript-language-server
|
||||
# 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
|
||||
];
|
||||
})
|
||||
];
|
||||
outputs = { self, nixpkgs, ags }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
devShells.${system}.default = pkgs.mkShell {
|
||||
buildInputs =
|
||||
[ pkgs.typescript-language-server ags.packages.${system}.agsFull ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue