home: added ./resources/media/nixos

This commit is contained in:
Guanran Wang 2023-11-10 01:24:35 +08:00
parent 676885ff56
commit f8069d23f8
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
7 changed files with 36 additions and 12 deletions

View file

@ -8,7 +8,6 @@
# gui # gui
gparted gparted
timeshift timeshift
mpv
### matrix ### matrix
#fluffychat #fluffychat
@ -16,18 +15,11 @@
cinny-desktop cinny-desktop
#nheko #nheko
### music
easyeffects
yesplaymusic
amberol
netease-cloud-music-gtk
### misc ### misc
bitwarden bitwarden
#discord #discord
#qq #qq
tuba tuba
mousai
protonup-qt protonup-qt
piper piper
telegram-desktop telegram-desktop
@ -36,14 +28,12 @@
dippi dippi
obs-studio obs-studio
gnome.seahorse gnome.seahorse
gnome.eog
gnome.file-roller gnome.file-roller
gnome.gnome-weather gnome.gnome-weather
gnome.gnome-calculator gnome.gnome-calculator
gnome.dconf-editor gnome.dconf-editor
# TUI # TUI
cava
joshuto # rs joshuto # rs
bottom bottom
helix helix

View file

@ -11,14 +11,13 @@
../../resources/browser/librewolf.nix ../../resources/browser/librewolf.nix
../../resources/lang/nix.nix ../../resources/lang/nix.nix
../../resources/lang/go.nix ../../resources/lang/go.nix
../../resources/media/nixos
../../resources/wm/sway.nix ../../resources/wm/sway.nix
../xdg ../xdg
../home.nix ../home.nix
../fonts.nix ../fonts.nix
../i18n.nix ../i18n.nix
../spicetify.nix
../theme.nix ../theme.nix
]; ];
} }

View file

@ -0,0 +1,8 @@
{...}: {
### For NixOS
imports = [
./music.nix
./photo.nix
./video.nix
];
}

View file

@ -0,0 +1,17 @@
{pkgs, ...}: {
imports = [./spicetify.nix];
home.packages = with pkgs; [
### Local
mpv
amberol
### Streaming
yesplaymusic
netease-cloud-music-gtk
### Misc
mousai
cava
easyeffects
];
}

View file

@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
gnome.eog
];
}

View file

@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
mpv
];
}