Move more stuff into home manager as appropriate.  Use 'personal'
instead of 'home' for non-work stuff.
This commit is contained in:
Alexander Wainwright
2025-12-24 17:37:06 +10:00
parent 5f9cada55b
commit a76299e62f
7 changed files with 15 additions and 19 deletions

View File

@@ -40,7 +40,6 @@
};
environment.systemPackages = with pkgs; [
bitwarden-desktop
libreoffice-fresh
meld
];

View File

@@ -1,38 +0,0 @@
{ 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
gemini-cli
(symlinkJoin {
name = "darktable";
paths = [ darktable ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
# Remove the symlink to the original binary
rm $out/bin/darktable
# Create a wrapper that points to the cached original
makeWrapper ${darktable}/bin/darktable $out/bin/darktable \
--set GDK_BACKEND wayland
'';
})
];
}

View File

@@ -0,0 +1,8 @@
{ config, pkgs, inputs, ... }:
{
# Mullvad vpn
services.mullvad-vpn = {
enable = true;
package = pkgs.mullvad-vpn;
};
}