Menno van Leeuwen eabff41a56
All checks were successful
Nix Format Check / check-format (push) Successful in 39s
refactor: streamline upgrade script and update Flutter environment variable
2024-11-21 22:25:19 +01:00

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)
];
}