2023-05-04 19:09:45 +02:00
|
|
|
{
|
|
|
|
inputs = {
|
2023-05-08 19:39:54 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2023-05-17 05:07:14 +02:00
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager/master";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
hyprland = {
|
|
|
|
url = "github:hyprwm/Hyprland";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
stylix = {
|
|
|
|
url = "github:danth/stylix";
|
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-05-04 19:09:45 +02:00
|
|
|
};
|
|
|
|
|
2023-05-10 17:31:57 +02:00
|
|
|
outputs = { self, nixpkgs, home-manager, hyprland, stylix, ... }@attrs: {
|
2023-05-09 17:43:25 +02:00
|
|
|
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
2023-05-04 19:09:45 +02:00
|
|
|
system = "x86_64-linux";
|
2023-05-09 17:43:25 +02:00
|
|
|
specialArgs = attrs;
|
2023-05-04 19:09:45 +02:00
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
2023-05-16 23:22:00 +02:00
|
|
|
./home-manager
|
2023-05-10 04:31:23 +02:00
|
|
|
hyprland.nixosModules.default
|
2023-05-10 17:31:57 +02:00
|
|
|
stylix.nixosModules.stylix
|
2023-05-09 17:43:25 +02:00
|
|
|
home-manager.nixosModules.home-manager
|
2023-05-04 19:09:45 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|