aboutsummaryrefslogtreecommitdiff
path: root/darwin/kompakt
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-09-09 17:49:03 +0900
committersefidel <contact@sefidel.net>2022-09-09 21:32:31 +0900
commit9e6145c031b47fc37398b80dec1b4dfc0cfb5183 (patch)
treef27e3c50a0c25223931e7057616e456432007de9 /darwin/kompakt
parent9e311725d4f6c68284e3999c01735ebe3665a14d (diff)
downloadnixrc-9e6145c031b47fc37398b80dec1b4dfc0cfb5183.zip
milestone: darwin!
feat(darwin/kompakt)!: support darwin chore: reformat feat(home/o32): manage neovim feat(home/development): fix haskell lsp version mismatch feat(darwin/*): stabilise
Diffstat (limited to 'darwin/kompakt')
-rw-r--r--darwin/kompakt/configuration.nix66
1 files changed, 66 insertions, 0 deletions
diff --git a/darwin/kompakt/configuration.nix b/darwin/kompakt/configuration.nix
new file mode 100644
index 0000000..8507adb
--- /dev/null
+++ b/darwin/kompakt/configuration.nix
@@ -0,0 +1,66 @@
+{ config, pkgs, lib, ... }:
+
+{
+ nix = {
+ settings.substituters = [
+ "https://cache.nixos.org/"
+ ];
+ settings.trusted-public-keys = [
+ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
+ ];
+
+ settings.trusted-users = [
+ "@admin"
+ ];
+
+ settings.auto-optimise-store = lib.mkDefault true;
+ configureBuildUsers = true;
+ gc.automatic = lib.mkDefault true;
+ gc.options = lib.mkDefault "--delete-older-than 10d";
+ extraOptions = ''
+ experimental-features = nix-command flakes
+ extra-platforms = x86_64-darwin aarch64-darwin
+ '';
+ };
+
+ # List packages installed in system profile. To search by name, run:
+ # $ nix-env -qaP | grep wget
+ environment.systemPackages =
+ [
+ pkgs.vim
+ ];
+
+ # Use a custom configuration.nix location.
+ # $ darwin-rebuild switch -I darwin-config=$HOME/.config/nixpkgs/darwin/configuration.nix
+ # environment.darwinConfig = "$HOME/.config/nixpkgs/darwin/configuration.nix";
+
+ # Auto upgrade nix package and the daemon service.
+ services.nix-daemon.enable = true;
+ # nix.package = pkgs.nix;
+
+ users.users.o32 = {
+ name = "o32";
+ home = "/Users/o32";
+ };
+
+ # Create /etc/zshrc that loads the nix-darwin environment.
+ programs.zsh.enable = true; # default shell on catalina
+ # programs.fish.enable = true;
+
+ # Make applications pop up in finder/spotlight
+ system.activationScripts.applications.text = pkgs.lib.mkForce (
+ ''
+ echo "setting up ~/Applications..." >&2
+ rm -rf ~/Applications/Nix\ Apps
+ mkdir -p ~/Applications/Nix\ Apps
+ for app in $(find ${config.system.build.applications}/Applications -maxdepth 1 -type l); do
+ src="$(/usr/bin/stat -f%Y "$app")"
+ cp -r "$src" ~/Applications/Nix\ Apps
+ done
+ ''
+ );
+
+ # Used for backwards compatibility, please read the changelog before changing.
+ # $ darwin-rebuild changelog
+ system.stateVersion = 4;
+}