added hyprpanel
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user