Files
nixos/hosts/modules/home.nix
2025-12-21 23:04:27 +10:00

31 lines
649 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
exiftool
digikam
shotwell
nextcloud-client
bitwarden-desktop
signal-desktop
spotify
(darktable.overrideAttrs (oldAttrs: {
nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ makeWrapper ];
postInstall = (oldAttrs.postInstall or "") + ''
wrapProgram $out/bin/darktable --set GDK_BACKEND wayland
'';
}))
];
}