Remove darwin_work

This commit is contained in:
Martin Larsson 2025-08-28 22:56:45 +02:00
parent 1c829674e4
commit c8dc2a3c0f
3 changed files with 0 additions and 41 deletions

View file

@ -210,13 +210,6 @@
name = "darwin"; name = "darwin";
user = "larssonmartin1998-mac"; user = "larssonmartin1998-mac";
}; };
darwin_work = makeDarwinSystem {
name = "darwin_work";
user = "martin.larsson";
extraModules = [
./nix/system/darwin_work.nix
];
}; };
}; };
@ -253,15 +246,6 @@
./nix/home/darwin_personal.nix ./nix/home/darwin_personal.nix
]; ];
}; };
"darwin_work" = makeHomeConfig {
name = "work";
system = "aarch64-darwin";
extraModules = [
./nix/home/darwin.nix
./nix/home/darwin_work.nix
];
};
}; };
}; };
} }

View file

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
(python311.withPackages (pythonPkgs: [
pythonPkgs.pip
pythonPkgs.setuptools
]))
pcre
ccache
mkdocs
];
};
}

View file

@ -1,11 +0,0 @@
{
...
}:
{
homebrew = {
brews = [
"openjdk"
"llvm"
];
};
}