home: added ./resources/media/nixos
This commit is contained in:
parent
676885ff56
commit
f8069d23f8
7 changed files with 36 additions and 12 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
{...}: {
|
||||
### For NixOS
|
||||
imports = [
|
||||
./music.nix
|
||||
./photo.nix
|
||||
./video.nix
|
||||
];
|
||||
}
|
|
@ -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
|
||||
];
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
gnome.eog
|
||||
];
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
mpv
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue