diff --git a/native_configs/ssh/config b/native_configs/ssh/config index 98b0e7d..40383a1 100644 --- a/native_configs/ssh/config +++ b/native_configs/ssh/config @@ -68,3 +68,8 @@ Host dev0 HostName 10.100.200.230 User root Port 22 + +Host dev1 + HostName 10.100.200.220 + User htran + Port 22 diff --git a/nix-conf/home-manager/base/private_chromium.nix b/nix-conf/home-manager/base/private_chromium.nix index 5cb7204..6679332 100644 --- a/nix-conf/home-manager/base/private_chromium.nix +++ b/nix-conf/home-manager/base/private_chromium.nix @@ -14,7 +14,7 @@ in ''; }; }; - config = lib.mkIf cfg.enable { + config = lib.mkIf (cfg.enable) { # home.packages = [pkgs.ungoogled-chromium]; programs.chromium = { enable = true; diff --git a/nix-conf/home-manager/flake.nix b/nix-conf/home-manager/flake.nix index 3b3abda..4ff0355 100644 --- a/nix-conf/home-manager/flake.nix +++ b/nix-conf/home-manager/flake.nix @@ -171,6 +171,10 @@ inherit pkgs; modules = base.modules ++ [ ./home.nix + ./base/productive_desktop.nix + { + base.private_chromium.enable = false; + } { base.graphics.enable = false; # don't want to deal with GL stuffs on mac yet :/