nix-dotfiles/flake.nix
2023-12-04 17:40:50 -08:00

17 lines
406 B
Nix

{
inputs = {
nixpkgs.url = "github:langedev/nixpkgs/nixos-unstable";
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { nixpkgs, hyprland, ... }: {
nixosConfigurations.onizuka = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
hyprland.nixosModules.default
{ programs.hyprland.enable = true; }
];
};
};
}