Files
nixos/modules/environments/hyprland/default.nix
T
2023-07-06 16:04:36 +02:00

22 lines
333 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.hyprland;
in {
options.my.profiles.hyprland = with lib; {
enable = mkEnableOption "hyprland env";
};
config = lib.mkIf cfg.enable {
programs.hyprland.enable = true;
users.users.finn.packages = with pkgs; [
wofi
mako
];
};
}