diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-01-08 22:25:37 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-01-08 22:28:19 +0530 |
commit | d91ce600ab53da44ee5919d038707e2690b1f6a9 (patch) | |
tree | 1e0cf8758d21fbc2e4267abe3eb563cadb54731a /hosts | |
parent | 279654d9e5c91413596c2328e6de4dc35d2c4dc5 (diff) |
modules/userdata: refactor, init userdata.package
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/cez/configuration.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hosts/cez/configuration.nix b/hosts/cez/configuration.nix index 3a2a196..2df69ef 100644 --- a/hosts/cez/configuration.nix +++ b/hosts/cez/configuration.nix @@ -39,6 +39,12 @@ in getty.autologinUser = user; }; + userdata.packages = with pkgs; [ + geoipWithDatabase + ffmpeg + (pass.withExtensions (exts: [ exts.pass-otp ])) + ]; + programs.adb.enable = true; userdata.groups = [ "adbusers" ]; } |