{ config, lib, pkgs, host, ... }: { nixpkgs.config.allowUnfree = true; nixpkgs.config.allowBroken = true; nixpkgs.config.allowUnsupportedSystem = true; nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" ]; home.packages = with pkgs; [ # gui firefox obsidian _1password-gui bottles protonup-qt beekeeper-studio chromium # tools btop nvtop neofetch rnix-lsp direnv bat eza lazygit aha unzip jq ripgrep fzf httpie xclip distrobox # languages nodejs yarn crystal shards python3 pyenv poetry nim zig bun deno # zsh stuff zsh spaceship-prompt # xpipe (import ./packages/xpipe.nix { inherit pkgs; }) ] ++ (import ../scripts { inherit pkgs host; }); }