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

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