some mac fixes

This commit is contained in:
Maddie H 2023-04-02 22:26:52 +01:00
parent 4677d65add
commit 8f003727fc
Signed by: maddie
GPG Key ID: C296DE8C9053683F
4 changed files with 7 additions and 3 deletions

View File

@ -4,6 +4,5 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
python3Full # Python python3Full # Python
go # Go go # Go
gcc # C
]; ];
} }

View File

@ -3,7 +3,6 @@
{ {
# Misc editors # Misc editors
home.packages = with pkgs; [ home.packages = with pkgs; [
vscode
helix helix
vis vis
]; ];

View File

@ -6,7 +6,8 @@
extraConfig = '' extraConfig = ''
return { return {
color_scheme = 'OneDark (base16)', color_scheme = 'OneDark (base16)',
hide_tab_bar_if_only_one_tab = true hide_tab_bar_if_only_one_tab = true,
window_close_confirmation = 'NeverPrompt'
} }
''; '';
}; };

View File

@ -0,0 +1,5 @@
{ config, ... }:
{
security.pam.enableSudoTouchIdAuth = true;
}