added astal

This commit is contained in:
biscuit
2025-05-13 20:30:52 -05:00
parent 97f24c894b
commit 82e38f7cd6
3 changed files with 51 additions and 25 deletions
+12 -3
View File
@@ -7,10 +7,19 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs"; # ensures version follows nixpkgs
hyprland.url = "github:hyprwm/Hyprland";
ags.url = "github:aylur/ags";
astal = {
url = "github:aylur/astal";
inputs.nixpkgs.follows = "nixpkgs";
};
ags = {
url = "github:aylur/ags";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, ags, ... } @ inputs:
outputs = { self, nixpkgs, home-manager, ags, astal, ... } @ inputs:
let
lib = nixpkgs.lib;
system = "x86_64-linux";
@@ -25,7 +34,7 @@
};
homeConfigurations = {
biscuit = home-manager.lib.homeManagerConfiguration {
extraSpecialArgs = { inherit inputs; };
extraSpecialArgs = { inherit inputs system; };
inherit pkgs;
modules = [ ./home-manager/home.nix
];