2023-11-19 19:31:04 -08:00
|
|
|
{
|
|
|
|
|
inputs = {
|
2024-02-21 14:48:45 -08:00
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
2023-11-19 19:31:04 -08:00
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
2024-03-17 16:14:40 -07:00
|
|
|
aagl = {
|
|
|
|
|
url = "github:ezKEa/aagl-gtk-on-nix";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
2023-11-19 19:31:04 -08:00
|
|
|
};
|
|
|
|
|
|
2024-03-17 16:14:40 -07:00
|
|
|
outputs = { self, nixpkgs, hyprland, aagl, ... }@inputs:
|
2024-03-05 21:31:57 -08:00
|
|
|
{
|
2023-12-04 17:40:50 -08:00
|
|
|
nixosConfigurations.onizuka = nixpkgs.lib.nixosSystem {
|
2023-11-19 19:31:04 -08:00
|
|
|
system = "x86_64-linux";
|
2024-02-21 14:48:45 -08:00
|
|
|
modules = [
|
2023-11-19 19:31:04 -08:00
|
|
|
hyprland.nixosModules.default
|
|
|
|
|
{ programs.hyprland.enable = true; }
|
2024-02-21 14:48:45 -08:00
|
|
|
./systems/shared
|
|
|
|
|
./systems/onizuka
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nixosConfigurations.jibril = nixpkgs.lib.nixosSystem {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
modules = [
|
|
|
|
|
hyprland.nixosModules.default
|
|
|
|
|
{ programs.hyprland.enable = true; }
|
|
|
|
|
./systems/shared
|
|
|
|
|
./systems/jibril
|
2023-11-19 19:31:04 -08:00
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|