feat: Added hyprshade

This commit is contained in:
uttarayan21
2026-01-06 15:26:12 +05:30
parent 99b4fb3ad1
commit 5d48a7ed38
7 changed files with 3446 additions and 61 deletions

View File

@@ -1,11 +1,5 @@
{
pkgs,
lib,
device,
...
}: {
programs.
bat = {
{...}: {
programs.bat = {
enable = true;
# extraPackages = with pkgs.bat-extras; [batman batgrep batwatch];
};

View File

@@ -8,10 +8,10 @@
./aichat.nix
./atuin.nix
./bat.nix
# ./bluetui.nix
./carapace.nix
./ddcbacklight.nix
./direnv.nix
./eilmeldung.nix
./eza.nix
./fastfetch.nix
./fish.nix
@@ -19,42 +19,43 @@
./gh.nix
./git.nix
./himalaya.nix
# ./mpd.nix
./hyprshade.nix
./ncpamixer.nix
./neomutt.nix
./neovim.nix
# ./nh.nix
./nix-index.nix
./nushell.nix
# ./omnix.nix
./opencode.nix
# ./retroarch.nix
./rustup.nix
# ./ryujinx.nix
./sops.nix
./ssh.nix
./starship.nix
# ./sxiv.nix
# ./tea.nix
./television.nix
./tmux.nix
# ./tuifeed.nix
./uv.nix
# ./xh.nix
./yazi.nix
./yt-dlp.nix
./zoxide.nix
./eilmeldung.nix
# ./bluetui.nix
# ./goread.nix
# ./helix.nix
# ./magika.nix
# ./mpd.nix
# ./mpris-scrobbler.nix
# ./ncmpcpp.nix
# ./neomutt.nix
# ./neovim.nix
# ./newsboat.nix
# ./nh.nix
# ./omnix.nix
# ./retroarch.nix
# ./ryujinx.nix
# ./sxiv.nix
# ./tea.nix
# ./template.nix
# ./tuifeed.nix
# ./xh.nix
# ./zellij.nix
];
home.packages = with pkgs;

View File

@@ -0,0 +1,10 @@
{
pkgs,
device,
...
}: {
home.packages = with pkgs;
lib.mkIf (device.is "ryu") [
hyprshade
];
}