Files
home-manager/desktop-environment/window-manager/hyprland.nix
Nina Chlóe Kassandra Reiß 64817ef4ff Add ssh and git configuration
2026-04-20 15:59:52 +02:00

62 lines
1.2 KiB
Nix

{ pkgs, lib, ... }:
let
dotfiles_hypr = pkgs.fetchgit {
url = "https://git.nichkara.eu/dotfiles/hypr";
rev = "83da92f0d64620c6503b8b2d9fa27bd79816e025";
sha256 = "sha256-kEKJiH0oK0PuciJZ6ucinTKX5eMWxPPZXYNS1+HIcRA=";
};
dotfiles_waybar = pkgs.fetchgit {
url = "https://git.nichkara.eu/dotfiles/waybar";
rev = "cd3d5d8a97f9fbc1cc8a69fc9e570dfcf669dce7";
sha256 = "sha256-FTpGumhxY6ChUXqnykO+aSJiFD4A80W0eqx7hXS9Iwc=";
};
profile = import ../../profile.nix;
in
{
home.packages = with pkgs; [
wofi
grim
swaynotificationcenter
swaylock
hyprpaper
lxsession
hyprshot
wayvnc
pamixer
pavucontrol
brightnessctl
python313Packages.requests
networkmanagerapplet
];
#fonts.packages = with pkgs; [
# nerd-fonts.space-mono
# ];
programs.hyprland = {
enable = true;
withUWSM = true;
xwayland.enable = true;
};
programs.waybar = {
enable = true;
};
home.file.".config/hypr" = {
source = dotfiles_hypr;
force = true;
recursive = true;
};
home.file.".config/waybar" = {
source = dotfiles_waybar;
force = true;
recursive = true;
};
}