added hyprpanel

This commit is contained in:
biscuit
2025-05-14 06:05:40 -05:00
parent 697be1193f
commit 2ec8cd6aaa
4 changed files with 163 additions and 22 deletions
+13 -4
View File
@@ -7,6 +7,7 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs"; # ensures version follows nixpkgs
hyprland.url = "github:hyprwm/Hyprland";
hyprland.inputs.nixpkgs.follows = "nixpkgs";
astal = {
url = "github:aylur/astal";
@@ -17,6 +18,9 @@
url = "github:aylur/ags";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprpanel.url = "github:Jas-SinghFSU/Hyprpanel";
hyprpanel.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, ags, astal, ... } @ inputs:
@@ -43,19 +47,24 @@
'';
};
nixosConfigurations = {
nixosConfigurations = {
biscuit = lib.nixosSystem {
specialArgs = { inherit inputs system; };
inherit system;
modules = [ ./nixos/configuration.nix ];
modules = [
./nixos/configuration.nix
{ nixpkgs.overlays = [inputs.hyprpanel.overlay]; }
];
};
};
homeConfigurations = {
biscuit = home-manager.lib.homeManagerConfiguration {
extraSpecialArgs = { inherit inputs system; };
overlays = [
inputs.hyprpanel.overlay
];
inherit pkgs;
modules = [ ./home-manager/home.nix
];
modules = [ ./home-manager/home.nix ];
};
};
};