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

View file

@ -11,14 +11,13 @@
../../resources/browser/librewolf.nix
../../resources/lang/nix.nix
../../resources/lang/go.nix
../../resources/media/nixos
../../resources/wm/sway.nix
../xdg
../home.nix
../fonts.nix
../i18n.nix
../spicetify.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
];
}