2023-11-19 19:31:04 -08:00
|
|
|
{
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:langedev/nixpkgs/nixos-unstable";
|
|
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
outputs = { nixpkgs, hyprland, ... }: {
|
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";
|
|
|
|
|
modules = [
|
|
|
|
|
./configuration.nix
|
|
|
|
|
hyprland.nixosModules.default
|
|
|
|
|
{ programs.hyprland.enable = true; }
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|