summaryrefslogtreecommitdiff
path: root/hosts/mac/mac.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/mac/mac.nix')
-rw-r--r--hosts/mac/mac.nix23
1 files changed, 20 insertions, 3 deletions
diff --git a/hosts/mac/mac.nix b/hosts/mac/mac.nix
index dba3035..651e2e4 100644
--- a/hosts/mac/mac.nix
+++ b/hosts/mac/mac.nix
@@ -1,12 +1,29 @@
{ pkgs, ... }:
{
- fonts.fontDir.enable = true;
- fonts.fonts = with pkgs; [
+# custom
+# y.kmonad.enable = true;
+ environment.systemPackages = with pkgs;[
+ alacritty
+ #overlays.yabai
+ ];
+ 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;
+
+
}