aboutsummaryrefslogtreecommitdiff
path: root/hosts/darwin/configuration.nix
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-07-29 02:04:35 +0200
committerschererleander <leander@schererleander.de>2025-07-29 02:04:35 +0200
commit7b3bf7557d4cd2d3263425cbfa15350b4c3ed361 (patch)
tree8814f7dfce6d0fd732f7a785d253a9c7971ab58e /hosts/darwin/configuration.nix
parente9452ac723b4459b9da06122b6e4e60726030934 (diff)
chore: rename hosts
Diffstat (limited to 'hosts/darwin/configuration.nix')
-rw-r--r--hosts/darwin/configuration.nix71
1 files changed, 0 insertions, 71 deletions
diff --git a/hosts/darwin/configuration.nix b/hosts/darwin/configuration.nix
deleted file mode 100644
index cc999a2..0000000
--- a/hosts/darwin/configuration.nix
+++ /dev/null
@@ -1,71 +0,0 @@
-{ config, pkgs, lib, ...}:
-
-{
- nix.settings.experimental-features = "nix-command flakes";
- nixpkgs.hostPlatform = "aarch64-darwin";
- nixpkgs.config.allowUnfree = true;
-
- users.users.schererleander.home = "/Users/schererleander";
-
- system.primaryUser = "schererleander";
- system.defaults = {
- dock = {
- autohide = true;
- largesize = 48;
- show-recents = false;
- };
- WindowManager.EnableStandardClickToShowDesktop = false;
- finder = {
- #ShowPathbar = true;
- #ShowStatusBar = true;
- _FXShowPosixPathInTitle = true;
- _FXSortFoldersFirst = true;
- };
- controlcenter = {
- Display = false;
- FocusModes = false;
- Sound = false;
- };
- loginwindow.GuestEnabled = false;
- };
-
- programs.zsh.enable = true;
-
- homebrew = {
- enable = true;
- taps = [
- "vladdoster/formulae"
- ];
- brews = [
- "keychain"
- "openjdk@17"
- "openjdk@21"
- "plantuml"
- "pinentry-mac"
- "minio-mc"
- ];
- casks = [
- "nextcloud"
- "bambu-studio"
- "vlc"
- "vladdoster/formulae/vimari"
- "arduino-ide"
- "docker-desktop"
- "anki"
- "mongodb-compass"
- "viscosity"
- ];
- masApps = {
- "Goodnotes 6" = 1444383602;
- "WhatsApp Messenger " = 310633997;
- "Adguard for Safari" = 1440147259;
- "WireGuard" = 1451685025;
- "Infuse" = 1136220934;
- };
- onActivation.cleanup = "zap";
- onActivation.autoUpdate = true;
- onActivation.upgrade = true;
- };
-
- system.stateVersion = 5;
-}