Compare commits

..

No commits in common. "ce8dfa8ca976b0e6e87d5c350baa451d3d2f27aa" and "84b5e059b9f3cad3244f253603181e263bfbfb32" have entirely different histories.

3 changed files with 5 additions and 28 deletions

View File

@ -13,5 +13,5 @@ curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix
git clone https://github.com/cupcakearmy/nix-macos ~/.config/nix-darwin
# Installation
nix run nix-darwin -- switch --flake ~/.config/nix-darwin#mbp
nix run nix-darwin -- switch --flake ~/.config/nix-darwin#sflx
```

View File

@ -37,25 +37,9 @@
# https://daiderd.com/nix-darwin/manual/index.html
environment.systemPackages = [ ];
# Security
system.defaults.screensaver.askForPassword = true;
system.defaults.screensaver.askForPasswordDelay = 0;
system.defaults.loginwindow.GuestEnabled = false;
# Dock
system.defaults.dock.autohide = true;
system.defaults.dock.orientation = "left";
system.defaults.dock.show-recents = false;
system.defaults.dock.persistent-apps = [
"/Applications/Arc.app"
"/Applications/Ghostty.app"
"/Applications/VSCodium.app"
"/Applications/Spotify.app"
"/System/Applications/System Settings.app"
];
system.defaults.dock.persistent-others = [ ];
# Input devices
system.defaults.finder.AppleShowAllExtensions = true;
system.keyboard.enableKeyMapping = true;
system.keyboard.remapCapsLockToEscape = true;
system.defaults.NSGlobalDomain.InitialKeyRepeat = 25;
@ -64,13 +48,6 @@
system.defaults.NSGlobalDomain."com.apple.trackpad.scaling" = 0.875;
system.defaults.trackpad.Dragging = true;
# Finder
system.defaults.finder.AppleShowAllExtensions = true;
system.defaults.finder.ShowPathbar = true;
# Other
system.startup.chime = false;
users.users."niccoloborgioli" = {
home = "/Users/niccoloborgioli";
shell = pkgs.fish;
@ -90,7 +67,7 @@
{
# Build darwin flake using:
# $ darwin-rebuild build --flake .#Niccolo-Borgioli-s-MacBook-Pro
darwinConfigurations."mbp" = nix-darwin.lib.darwinSystem {
darwinConfigurations."sflx" = nix-darwin.lib.darwinSystem {
modules = [
configuration
home-manager.darwinModules.home-manager
@ -103,6 +80,6 @@
};
# Expose the package set, including overlays, for convenience.
darwinPackages = self.darwinConfigurations."mbp".pkgs;
darwinPackages = self.darwinConfigurations."sflx".pkgs;
};
}

View File

@ -85,7 +85,7 @@
t = "tmux new-session -A -s main";
e = "nvim";
hms = "home-manager switch --flake ~/nix#root -b backup";
snd = "darwin-rebuild switch --flake ~/.config/nix-darwin#mpb";
snd = "darwin-rebuild switch --flake ~/.config/nix-darwin#sflx";
};
programs.fish = {