Original repo: end-4/dots-hyprland
Inspired by bigsaltyfishes/end-4-dots
This is the QuickShell variant (not the AGS), tailored for use with NixOS and Home Manager modules.
Import the module in your configuration.nix:
{
imports = [
inputs.illogical-impulse.homeManagerModules.default
];
}Configure illogical-impulse in your module settings:
illogical-impulse = {
# Enable the dotfiles suite
enable = true;
hyprland = {
# Use customized Hyprland build
package = hypr.hyprland;
xdgPortalPackage = hypr.xdg-desktop-portal-hyprland;
# Enable Wayland ozone
ozoneWayland.enable = true;
};
# Dotfiles configurations
dotfiles = {
fish.enable = true;
kitty.enable = true;
};
};