mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-04-03 17:05:59 +02:00
12 lines
176 B
Nix
12 lines
176 B
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
user = config.yoda.user;
|
|
in
|
|
{
|
|
users.users."${user}" = {
|
|
packages = with pkgs; [
|
|
unstable.freetube # YouTube client.
|
|
];
|
|
};
|
|
}
|