mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-02-11 08:50:59 +01:00
9 lines
139 B
Nix
9 lines
139 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
users.users."yoda" = {
|
|
packages = with pkgs; [
|
|
unstable.freetube # YouTube client.
|
|
];
|
|
};
|
|
}
|