summaryrefslogtreecommitdiff
path: root/hosts/mac/mac.nix
diff options
context:
space:
mode:
authors <lol>2025-02-21 17:10:50 +0700
committers <lol>2025-02-21 17:10:50 +0700
commit7758e10d8fe1095ee77643f7248d94ed4235834b (patch)
treec51292fcae6238b6388d55f6e7a702305a0cfcf6 /hosts/mac/mac.nix
parentc0be55eb72fdad38de6e1c72a52b1500216c3043 (diff)
mac
Diffstat (limited to 'hosts/mac/mac.nix')
-rw-r--r--hosts/mac/mac.nix19
1 files changed, 15 insertions, 4 deletions
diff --git a/hosts/mac/mac.nix b/hosts/mac/mac.nix
index dba3035..2e55b01 100644
--- a/hosts/mac/mac.nix
+++ b/hosts/mac/mac.nix
@@ -1,12 +1,23 @@
-{ pkgs, ... }:
+{ self, pkgs, ... }:
{
- fonts.fontDir.enable = true;
- fonts.fonts = with pkgs; [
+ fonts.packages = with pkgs; [
recursive
- (nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
+ pkgs.nerd-fonts.droid-sans-mono
+ # (pkgs.nerd-fonts.override { fonts = [ "JetBrainsMono" ]; })
];
+ #system.configurationRevision = self.rev or self.dirtyRev or null;
system.keyboard = {
enableKeyMapping = true;
remapCapsLockToEscape = true;
};
+ #pkgs = import nixpkgs {
+ # overlays = builtins.attrValues self.overlays;
+ # system = "aarch64-darwin";
+ #};
+ nixpkgs.hostPlatform = "aarch64-darwin";
+ system.stateVersion = 6;
+ ids.gids.nixbld = 30000;
+ #services.nix-daemon.enable = true;
+
+
}