pantheon/modules/hm/programs/default.nix

23 lines
284 B
Nix

{
config,
lib,
pkgs,
...
}:
let
username = config.nixosModules.mainUser;
in
{
imports = [
./hyprland.nix
./editor.nix
];
config = lib.mkMerge [
{
home-manager.users."${username}".home.packages = with pkgs; [
pulsemixer
];
}
];
}