1
0
mirror of https://codeberg.org/privacy1st/nix-git synced 2025-02-28 11:05:23 +01:00

9 lines
137 B
Nix
Raw Normal View History

2023-10-18 17:47:26 +02:00
{ config, pkgs, lib, ... }:
{
users.users.yoda = {
packages = with pkgs; [
2024-12-26 17:30:56 +01:00
unstable.freetube # YouTube client.
2023-10-18 17:47:26 +02:00
];
};
}