std works for now #18

Merged
pegasust merged 65 commits from std into master 2023-06-18 09:17:44 +00:00
3 changed files with 10 additions and 1 deletions
Showing only changes of commit 27ed93d41e - Show all commits

View File

@ -68,3 +68,8 @@ Host dev0
HostName 10.100.200.230 HostName 10.100.200.230
User root User root
Port 22 Port 22
Host dev1
HostName 10.100.200.220
User htran
Port 22

View File

@ -14,7 +14,7 @@ in
''; '';
}; };
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf (cfg.enable) {
# home.packages = [pkgs.ungoogled-chromium]; # home.packages = [pkgs.ungoogled-chromium];
programs.chromium = { programs.chromium = {
enable = true; enable = true;

View File

@ -171,6 +171,10 @@
inherit pkgs; inherit pkgs;
modules = base.modules ++ [ modules = base.modules ++ [
./home.nix ./home.nix
./base/productive_desktop.nix
{
base.private_chromium.enable = false;
}
{ {
base.graphics.enable = false; base.graphics.enable = false;
# don't want to deal with GL stuffs on mac yet :/ # don't want to deal with GL stuffs on mac yet :/