49 lines
776 B
Nix
49 lines
776 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
|
|
swaylock
|
|
hyprpaper
|
|
lxsession
|
|
hyprshot
|
|
wayvnc
|
|
pamixer
|
|
pavucontrol
|
|
brightnessctl
|
|
python313Packages.requests
|
|
networkmanagerapplet
|
|
];
|
|
|
|
wayland = {
|
|
windowManager = {
|
|
hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
configType = "hyprlang";
|
|
extraConfig = "";
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.waybar = {
|
|
enable = true;
|
|
};
|
|
|
|
xdg.configFile."hypr" = {
|
|
source = hyprFlake;
|
|
recursive = true;
|
|
};
|
|
|
|
}
|