1
0
forked from extern/nix-config
donovanglover-nix-config/flake.nix
Donovan Glover d1a78a7a57
meta: Remove hyprbars
Although this was cute, there are simply too many bugs and other
inconveniences to be worth it. For example, the bar cannot be focused
when a workspace has a fullscreen application.
2023-08-01 19:04:43 -04:00

31 lines
681 B
Nix

{
inputs = {
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
hyprland = {
url = "github:hyprwm/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 = [ ./. ];
};
};
}