15 lines
355 B
Nix
15 lines
355 B
Nix
{ inputs, pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let cfg = config.modules.hyprland;
|
|
|
|
in {
|
|
options.modules.hyprland= { enable = mkEnableOption "hyprland"; };
|
|
config = mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
wofi swaybg wlsunset wl-clipboard hyprland
|
|
];
|
|
|
|
home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf;
|
|
};
|
|
}
|