forked from extern/nix-config
e3cf378b31
This was my test of the hyprbars fork. It turns out that the original version is more useful, although both versions crash whenever reloading the plugin after unloading it once.
36 lines
824 B
Nix
36 lines
824 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
|
|
|
|
hyprland = {
|
|
url = "github:hyprwm/Hyprland";
|
|
};
|
|
|
|
hyprland-plugins = {
|
|
url = "github:snehrbass/sn-hyprland-plugins/sn-win-filter";
|
|
inputs.hyprland.follows = "hyprland";
|
|
};
|
|
|
|
home-manager = {
|
|
url = "github:donovanglover/home-manager/personal-master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
stylix = {
|
|
url = "github:donovanglover/stylix/personal-master";
|
|
inputs = {
|
|
nixpkgs.follows = "nixpkgs";
|
|
home-manager.follows = "home-manager";
|
|
};
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... } @ attrs: {
|
|
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = attrs;
|
|
modules = [ ./. ];
|
|
};
|
|
};
|
|
}
|