aboutsummaryrefslogtreecommitdiff
path: root/profiles/makemkv.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-12-30 19:02:53 -0800
committerFranck Cuny <franck@fcuny.net>2025-12-30 19:02:53 -0800
commitdacf64ca7fd6d6d2cf927c709a74cb7adc8e6236 (patch)
treeb57889c0d611f11bdecba29c7a777c6100ba92df /profiles/makemkv.nix
parentinclude relevant programs in work profile (diff)
downloadinfra-dacf64ca7fd6d6d2cf927c709a74cb7adc8e6236.tar.gz
add back some abstractions related to user management
Diffstat (limited to '')
-rw-r--r--profiles/makemkv.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/profiles/makemkv.nix b/profiles/makemkv.nix
index 8daa4fd..6bbc243 100644
--- a/profiles/makemkv.nix
+++ b/profiles/makemkv.nix
@@ -1,4 +1,4 @@
-{ pkgs, ... }:
+{ adminUser, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ffmpeg
@@ -8,5 +8,5 @@
boot.kernelModules = [ "sg" ];
- users.users.fcuny.extraGroups = [ "cdrom" ];
+ users.users.${adminUser.name}.extraGroups = [ "cdrom" ];
}