clean repo

This commit is contained in:
2025-03-10 10:03:51 +01:00
commit 01b26805d5
42 changed files with 1200 additions and 0 deletions

4
hosts/default.nix Normal file
View File

@@ -0,0 +1,4 @@
[
(import ./mac14.nix)
(import ./mac16.nix)
]

5
hosts/mac14.nix Normal file
View File

@@ -0,0 +1,5 @@
{
username = "cupcakearmy";
hostName = "mac14";
platform = "aarch64-darwin";
}

27
hosts/mac16.nix Normal file
View File

@@ -0,0 +1,27 @@
{
username = "niccoloborgioli";
hostName = "mac16";
platform = "aarch64-darwin";
extras = {
casks = [
"phpstorm"
"datagrip"
"tailscale"
"android-studio"
];
pkgs =
pkgs: with pkgs; [
vault
cocoapods
phrase-cli
boundary
awscli2
fastlane
jdk
android-tools
sdkmanager
_1password-cli
];
};
}