mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-01-09 04:51:20 +01:00
9 lines
137 B
Nix
9 lines
137 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
unstable.freetube # YouTube client.
|
|
];
|
|
};
|
|
}
|