Add macbook config

This commit is contained in:
Michael Thomas 2021-04-28 13:14:26 -04:00
parent 4baf0f215c
commit 3ba7757eea
6 changed files with 26 additions and 3 deletions

1
nixpkgs/config.nix Symbolic link
View File

@ -0,0 +1 @@
/Users/administrator/Projects/nix-dots/nixpkgs/machines/mac/config.nix

1
nixpkgs/home.nix Symbolic link
View File

@ -0,0 +1 @@
/Users/administrator/Projects/nix-dots/nixpkgs/machines/mac/home.nix

View File

@ -0,0 +1,3 @@
{
allowUnfree = true;
}

View File

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
imports = [
../../modules/home-manager.nix
../../modules/zsh.nix
../../modules/dev.nix
];
home.packages = with pkgs; [
neofetch
];
}

6
nixpkgs/modules/dev.nix Normal file
View File

@ -0,0 +1,6 @@
{ config, pkgs, libs, ... }:
{
home.packages = with pkgs; [
yarn
];
}

View File

@ -28,8 +28,8 @@
enable = true;
enableZshIntegration = true;
settings = {
character.symbol = "";
character.success_symbol = "[](bold green)";
};
character.symbol = " ";
character.success_symbol = "[](green)";
};
};
}