Skip to content

Commit

Permalink
Cleanup:
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesplain committed Jun 20, 2024
1 parent aed8a96 commit cb9fe68
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
42 changes: 21 additions & 21 deletions nixos-config/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nixos-config/modules/packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ in {
jq
k9s # Doesn't resolve properly on mac, using brew instead, see https://github.com/derailed/k9s/issues/780
less
nixfmt
nixfmt-classic
ripgrep
tree
watch
Expand Down
8 changes: 4 additions & 4 deletions nixos-config/platforms/darwin/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
system.stateVersion = 4;

security.pam.enableSudoTouchIdAuth = true;
fonts.fontDir.enable = true;
# fonts.fontDir.enable = true;
# fonts.fonts = [(pkgs.nerdfonts.override {fonts = ["Meslo"];})];
fonts.fonts = [(pkgs.nerdfonts)];
fonts.packages = [(pkgs.nerdfonts)];

nix.package = pkgs.nix;
nix.settings.auto-optimise-store = true;
nix.settings.trusted-users = [ user.name ];
nix.maxJobs = 10;
nix.settings.max-jobs = 10;

programs.zsh.enable = true;

Expand Down Expand Up @@ -47,7 +47,7 @@
environment = {
shells = with pkgs; [zsh];
loginShell = pkgs.zsh;
systemPackages = with pkgs; [ nixfmt git coreutils ];
systemPackages = with pkgs; [ nixfmt-classic git coreutils ];
pathsToLink = [
"/Applications"
"/share/zsh"
Expand Down

0 comments on commit cb9fe68

Please sign in to comment.