Samuel Shuert | f1d6e99 | 2023-11-24 17:28:33 -0500 | [diff] [blame] | 1 | { 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 Shuert | ed2a336 | 2024-01-25 21:56:10 -0500 | [diff] [blame] | 15 | rpiplay |
| 16 | ]; |
| 17 | environment.systemPackages = with pkgs; [ |
| 18 | tmux |
Samuel Shuert | f1d6e99 | 2023-11-24 17:28:33 -0500 | [diff] [blame] | 19 | ]; |
| 20 | } |