nix-dotfiles/flake.nix
2023-11-19 19:31:04 -08:00

17 lines
405 B
Nix

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