From cdcc4a1cf3c927aca86c45c3daa9c8e48112646d Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sat, 20 Aug 2022 23:46:32 -0600 Subject: home: enable isolation --- home/default.nix | 1 + home/isolation.nix | 4 ++++ shenvs/config.nix | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 home/isolation.nix diff --git a/home/default.nix b/home/default.nix index 2f928bf..0941f42 100644 --- a/home/default.nix +++ b/home/default.nix @@ -3,6 +3,7 @@ with lib; { imports = [ hm-isolation.homeManagerModule + ./isolation.nix ./unfree.nix ]; diff --git a/home/isolation.nix b/home/isolation.nix new file mode 100644 index 0000000..cfb6872 --- /dev/null +++ b/home/isolation.nix @@ -0,0 +1,4 @@ +{ lib, pkgs, ... }: +with lib; { + home.isolation.enable = true; +} diff --git a/shenvs/config.nix b/shenvs/config.nix index 2c4de6c..4d33f74 100644 --- a/shenvs/config.nix +++ b/shenvs/config.nix @@ -8,5 +8,5 @@ workstation = [ randall ]; - in common ++ optionals config.local.workstation workstation; + in []; # common ++ optionals config.local.workstation workstation; } -- cgit v1.2.3