blob: fac3c63ae5f2f9484c85be8f30ec2f2b1c4554a2 [file] [log] [blame]
Samuel Shuertf1d6e992023-11-24 17:28:33 -05001{ pkgs, ... }: {
2 hardware.enableRedistributableFirmware = true;
3 nixpkgs.config.allowUnfree = true;
4 nixpkgs.config.permittedInsecurePackages = with pkgs; [
5 "mailspring-1.11.0"
6 ];
7 home-manager.users.coded.home.packages = with pkgs; [
8 bitwarden
9 sops
10 nixfmt
11 nextcloud-client
12 email
13 mailspring
14 ollama
15 ];
16}