73 lines
1.4 KiB
Nix
73 lines
1.4 KiB
Nix
{ pkgs, lib, ... }:
|
|
let
|
|
dotfiles_hypr = pkgs.fetchgit {
|
|
url = "https://git.nichkara.eu/dotfiles/hypr";
|
|
rev = "ba03a7d86bf564cbb9e817b895a2497da84b8bad";
|
|
sha256 = "sha256-mbE94wrz3Gl7IE7uD5sCTyII4eQcsjFhyafeOeTgy6s=";
|
|
};
|
|
|
|
dotfiles_waybar = pkgs.fetchgit {
|
|
url = "https://git.nichkara.eu/dotfiles/waybar";
|
|
rev = "cd3d5d8a97f9fbc1cc8a69fc9e570dfcf669dce7";
|
|
sha256 = "sha256-FTpGumhxY6ChUXqnykO+aSJiFD4A80W0eqx7hXS9Iwc=";
|
|
};
|
|
|
|
dotfiles_wofi = pkgs.fetchgit {
|
|
url = "https://git.nichkara.eu/dotfiles/wofi.git";
|
|
rev = "47bbe8a40de55871ad6106b2fa5df18d6ec77e39";
|
|
sha256 = "sha256-lrQfc9nQinbd1hbf1WmLm8NMRqQKb1ti3v+074+Oo5Y=";
|
|
};
|
|
|
|
profile = import ../../profile.nix;
|
|
in
|
|
{
|
|
|
|
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;
|
|
extraConfig = ''
|
|
exec-once = sleep 2 && nextcloud
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
programs.waybar = {
|
|
enable = true;
|
|
};
|
|
|
|
xdg.configFile."hypr" = {
|
|
source = dotfiles_hypr;
|
|
recursive = true;
|
|
};
|
|
|
|
xdg.configFile."waybar" = {
|
|
source = dotfiles_waybar;
|
|
recursive = true;
|
|
};
|
|
|
|
xdg.configFile."wofi" = {
|
|
source = dotfiles_wofi;
|
|
recursive = true;
|
|
};
|
|
|
|
}
|