All checks were successful
Nix Format Check / check-format (push) Successful in 39s
13 lines
358 B
Nix
13 lines
358 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ ./virtualisation.nix ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
yubikey-manager
|
|
trash-cli
|
|
sqlite # Used for managing SQLite databases (Brave Settings etc.)
|
|
xcp # Rust implementation of cp/mv command
|
|
pandoc # Document converter (Markdown, HTML, PDF etc.) (Mostly used for static site generators)
|
|
];
|
|
}
|