mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-04-02 16:55:59 +02:00
13 lines
243 B
Nix
13 lines
243 B
Nix
{ lib, config, pkgs, ... }:
|
|
let
|
|
user = config.yoda.user;
|
|
in
|
|
{
|
|
users.users."${user}" = {
|
|
packages = with pkgs; [
|
|
file-roller # Archive manager: Compress and decompress
|
|
lz4 # Add support to extract lz4 archives
|
|
];
|
|
};
|
|
}
|