mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
10 lines
210 B
Nix
10 lines
210 B
Nix
|
{ lib, config, pkgs, ... }:
|
||
|
{
|
||
|
users.users.yoda = {
|
||
|
packages = with pkgs; [
|
||
|
gnome.file-roller # Archive manager: Compress and decompress
|
||
|
lz4 # Add support to extract lz4 archives
|
||
|
];
|
||
|
};
|
||
|
}
|