95 lines
2.3 KiB
Nix
95 lines
2.3 KiB
Nix
{
|
|
description = "Felix's NixOS configurations";
|
|
|
|
outputs = inputs @ {
|
|
nixpkgs,
|
|
nixpkgs-unstable,
|
|
home-manager,
|
|
...
|
|
}: {
|
|
nixosConfigurations = {
|
|
wildfire = nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit inputs;
|
|
pkgs-unstable = import nixpkgs-unstable {
|
|
system = "x86_64-linux";
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
modules = [
|
|
./hosts/wildfire/configuration.nix
|
|
];
|
|
};
|
|
hurricane = nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit inputs;
|
|
pkgs-unstable = import nixpkgs-unstable {
|
|
system = "x86_64-linux";
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
modules = [
|
|
./hosts/hurricane/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
|
|
inputs = {
|
|
# NixOS
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
|
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
# Home Manager
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-25.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# hyprwm
|
|
hyprland.url = "github:hyprwm/hyprland";
|
|
|
|
hypridle = {
|
|
url = "github:hyprwm/hypridle";
|
|
inputs = {
|
|
hyprlang.follows = "hyprland/hyprlang";
|
|
hyprutils.follows = "hyprland/hyprutils";
|
|
nixpkgs.follows = "hyprland/nixpkgs";
|
|
systems.follows = "hyprland/systems";
|
|
};
|
|
};
|
|
|
|
hyprland-contrib = {
|
|
url = "github:hyprwm/contrib";
|
|
inputs.nixpkgs.follows = "hyprland/nixpkgs";
|
|
};
|
|
|
|
hyprland-plugins = {
|
|
url = "github:hyprwm/hyprland-plugins";
|
|
inputs.hyprland.follows = "hyprland";
|
|
};
|
|
|
|
hyprlock = {
|
|
url = "github:hyprwm/hyprlock";
|
|
inputs = {
|
|
hyprgraphics.follows = "hyprland/hyprgraphics";
|
|
hyprlang.follows = "hyprland/hyprlang";
|
|
hyprutils.follows = "hyprland/hyprutils";
|
|
nixpkgs.follows = "hyprland/nixpkgs";
|
|
systems.follows = "hyprland/systems";
|
|
};
|
|
};
|
|
|
|
hyprpaper = {
|
|
url = "github:hyprwm/hyprpaper";
|
|
inputs = {
|
|
hyprgraphics.follows = "hyprland/hyprgraphics";
|
|
hyprlang.follows = "hyprland/hyprlang";
|
|
hyprutils.follows = "hyprland/hyprutils";
|
|
nixpkgs.follows = "hyprland/nixpkgs";
|
|
systems.follows = "hyprland/systems";
|
|
};
|
|
};
|
|
};
|
|
}
|