33 lines
507 B
Nix
33 lines
507 B
Nix
{ pkgs, lib, ... }:
|
|
let
|
|
hyprFlake = builtins.getFlake "git+https://git.nichkara.eu/system/hyprlua";
|
|
profile = import ../../profile.nix;
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
hyprFlake.homeManagerModules.default
|
|
];
|
|
|
|
home-packages = with pkgs; [
|
|
wofi
|
|
grim
|
|
swaynotificationcenter
|
|
hyprpaper
|
|
lxsession
|
|
hyprlock
|
|
hyprshot
|
|
wayvnc
|
|
pamixer
|
|
pavucontrol
|
|
brightnessctl
|
|
python313Packages.requests
|
|
networkmanagerapplet
|
|
swaybg
|
|
quickshell
|
|
waybar
|
|
blueman
|
|
];
|
|
|
|
}
|