nixos/modules/desktop/fireproof-shell.nix
2025-02-25 22:58:44 +01:00

15 lines
289 B
Nix

{
config,
inputs,
pkgs,
...
}: {
environment.systemPackages = [
inputs.fireproof-shell.packages.${pkgs.system}.fireproof-shell
];
programs.fireproof-shell = {
enable = true;
systemd = true;
monitor.primary = (builtins.head config.monitors).name or "";
};
}