1
0
forked from extern/nix-config
donovanglover-nix-config/flake.nix

36 lines
824 B
Nix
Raw Normal View History

{
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";
};
2023-05-17 05:07:14 +02:00
home-manager = {
url = "github:donovanglover/home-manager/personal-master";
2023-05-17 05:07:14 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
2023-05-17 05:07:14 +02:00
stylix = {
url = "github:donovanglover/stylix/personal-master";
2023-05-17 05:35:52 +02:00
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
2023-05-17 05:07:14 +02:00
};
2023-06-21 08:41:38 +02:00
};
outputs = { self, nixpkgs, ... } @ attrs: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2023-06-21 08:41:38 +02:00
specialArgs = attrs;
modules = [ ./. ];
2023-06-21 08:41:38 +02:00
};
};
}