nixos/modules/desktop/fireproof-shell.nix

16 lines
289 B
Nix
Raw Normal View History

2025-02-24 22:52:19 +01:00
{
config,
inputs,
pkgs,
...
2025-02-25 22:58:44 +01:00
}: {
environment.systemPackages = [
inputs.fireproof-shell.packages.${pkgs.system}.fireproof-shell
];
programs.fireproof-shell = {
enable = true;
systemd = true;
2025-02-25 22:58:44 +01:00
monitor.primary = (builtins.head config.monitors).name or "";
};
2025-02-24 22:52:19 +01:00
}