Files
nixos/hosts/modules/home.nix
Alexander Wainwright b25b2e5b35 Add apps
2025-10-02 22:12:39 +10:00

22 lines
364 B
Nix

{ config, pkgs, inputs, ... }:
{
# Mullvad vpn
services.mullvad-vpn = {
enable = true;
};
environment.systemPackages = with pkgs; [
foliate
inputs.locutus.packages.${pkgs.system}.default
jrnl
mullvad-browser
mullvad-vpn
tor-browser
darktable
nextcloud-client
bitwarden-desktop
signal-desktop
spotify
];
}