aboutsummaryrefslogtreecommitdiff
path: root/users/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-07-21 17:57:36 -0700
committerFranck Cuny <franck@fcuny.net>2025-07-21 17:57:36 -0700
commit5484afc2ce90ab7d2d33d1a9e822d497f44c4e5d (patch)
tree9f8d541e57956e7639b12801375ad91693a95b2c /users/profiles
parentmove all profiles, modules, and flakes to top-level (diff)
downloadinfra-5484afc2ce90ab7d2d33d1a9e822d497f44c4e5d.tar.gz
keep organizing into modules and profiles
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";
}