Those who understand the current situation at hand:

This commit is contained in:
Sakooooo 2024-11-16 23:25:34 +04:00
parent b0c9a7c28c
commit 2aae988918
Signed by: sako
GPG key ID: FE52FD65B76E4751

View file

@ -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
];
})
];
}; };
}; };
} }