nix-git/modules/file-roller.nix

10 lines
206 B
Nix
Raw Normal View History

2024-02-08 20:57:06 +01:00
{ lib, config, pkgs, ... }:
{
2025-02-09 21:35:44 +01:00
users.users."yoda" = {
2024-02-08 20:57:06 +01:00
packages = with pkgs; [
2024-12-03 22:16:26 +01:00
file-roller # Archive manager: Compress and decompress
2024-02-08 20:57:06 +01:00
lz4 # Add support to extract lz4 archives
];
};
}