Merge branch 'main' of github.com:tmayoff/.dotfiles

This commit is contained in:
Tyler Mayoff 2025-02-14 19:52:42 -05:00
commit 9f9b515069
42 changed files with 2367 additions and 5 deletions

View file

@ -1,4 +1,5 @@
{
outputs,
pkgs,
lib,
...
@ -7,8 +8,21 @@
imports = [
# ../fish.nix
./sketchybar.nix
];
nixpkgs = {
overlays = [
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.unstable-packages
];
config = {
allowUnfree = true;
};
};
nix.extraOptions =
''
auto-optimise-store = true
@ -24,17 +38,25 @@
shell = pkgs.fish;
};
services.sketchybar.enable = true;
system.defaults.NSGlobalDomain._HIHideMenuBar = true;
system.stateVersion = 5;
security.pam.enableSudoTouchIdAuth = true;
environment.systemPackages = with pkgs; [
pinentry_mac
llvmPackages_19.clang-tools
sketchybar
sbarlua
lua
# android-tools
jdk17
];
programs.fish.enable = true;
programs.zsh.enable = true;
system.stateVersion = 5;
}

View file

@ -0,0 +1,6 @@
{...}: {
# services.sketchybar = {
# enable = true;
# extraPackages = [];
# };
}