Separate out home module

This commit is contained in:
Alexander Wainwright 2025-08-18 12:46:15 +10:00
parent d20a87987e
commit 988c06c58b
4 changed files with 17 additions and 13 deletions

15
hosts/modules/home.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, inputs, ... }:
{
# Mullvad vpn
services.mullvad-vpn = {
enable = true;
};
environment.systemPackages = with pkgs; [
foliate
inputs.locutus.packages.${pkgs.system}.default
mullvad-browser
mullvad-vpn
tor-browser
];
}