aboutsummaryrefslogtreecommitdiff
path: root/users/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'users/profiles')
-rw-r--r--users/profiles/media.nix4
-rw-r--r--users/profiles/minimal.nix4
2 files changed, 7 insertions, 1 deletions
diff --git a/users/profiles/media.nix b/users/profiles/media.nix
index f0919a3..265eb89 100644
--- a/users/profiles/media.nix
+++ b/users/profiles/media.nix
@@ -1,8 +1,10 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
- mpv
ffmpeg
+ mpv
transmission_4
+ vlc-bin
+ yt-dlp
];
}
diff --git a/users/profiles/minimal.nix b/users/profiles/minimal.nix
index aaffdbd..ed67195 100644
--- a/users/profiles/minimal.nix
+++ b/users/profiles/minimal.nix
@@ -1,6 +1,10 @@
{ pkgs, ... }:
{
+
+ imports = [ ./bat.nix ];
home.packages = with pkgs; [
htop
];
+
+ home.stateVersion = "25.05";
}