Menno van Leeuwen 498b28fac0
Some checks failed
Nix Format Check / check-format (push) Failing after 39s
refactor: add NixOS configuration files for server and workstation setups
2025-03-04 11:22:51 +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)
];
}