blob: f8c0f0b9cbcd0a6c6b1bc181af71ec48ac42dc75 [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
Samuel Shuerted2a3362024-01-25 21:56:10 -050015 rpiplay
16 ];
17 environment.systemPackages = with pkgs; [
18 tmux
Samuel Shuertf1d6e992023-11-24 17:28:33 -050019 ];
20}