This commit is contained in:
lsoriano-mcm
2025-06-23 17:00:36 -05:00
parent fe79d7a2c4
commit f214789d22
5 changed files with 1078 additions and 7 deletions
Generated
+1063
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -111,7 +111,7 @@
system = "aarch64-darwin";
specialArgs = args;
modules = [
./nixos/macos/darwin.nix
./hosts/macos/darwin.nix
home-manager.darwinModules.home-manager
{
home-manager.useGlobalPkgs = true;
+1 -1
View File
@@ -5,7 +5,7 @@
...
}: {
imports = [
../../modules/dev.nix
../../system/dev/macos.nix
];
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
-5
View File
@@ -1,5 +0,0 @@
{...}: {
imports = [
../system/gaming.nix
];
}
+13
View File
@@ -0,0 +1,13 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
python3
python3Packages.pip
python3Packages.pygobject3
python3Packages.setuptools
python3Packages.wheel
git
p7zip
tldr
jq
];
}