feat: Added stuff

This commit is contained in:
uttarayan21
2025-07-18 17:06:37 +05:30
parent 214c6e5d92
commit 412ebf98f0
11 changed files with 50 additions and 16 deletions

View File

@@ -1,3 +1,8 @@
{pkgs, ...}: {
home.packages = [pkgs.ddcbacklight];
{
pkgs,
device,
lib,
...
}: {
home.packages = lib.optionals (device.name == "ryu") [pkgs.ddcbacklight];
}

View File

@@ -15,10 +15,10 @@
./fzf.nix
./gh.nix
./git.nix
./goread.nix
./helix.nix
# ./goread.nix
# ./helix.nix
./mpd.nix
./newsboat.nix
# ./newsboat.nix
./nh.nix
./nix-index.nix
./nushell.nix
@@ -29,10 +29,12 @@
./tuifeed.nix
./yazi.nix
./zoxide.nix
# ./mpris-scrobbler.nix
./omnix.nix
# ./ddcbacklight.nix
./yt-dlp.nix
./ryujinx.nix
./ddcbacklight.nix
# ./neovim.nix
# ./mpris-scrobbler.nix
# ./magika.nix
# ./ncmpcpp.nix
# ./neomutt.nix

10
home/programs/ryujinx.nix Normal file
View File

@@ -0,0 +1,10 @@
{
lib,
pkgs,
device,
...
}: {
home.packages = lib.optionals (device.name == "ryu") [
pkgs.ryujinx
];
}