fix mac config

This commit is contained in:
mjallen18
2024-03-19 16:26:52 -05:00
parent f62082a35a
commit 64cb797740
4 changed files with 37 additions and 32 deletions

View File

@@ -74,9 +74,9 @@ in {
programs = {
fish.enable = true;
gnupg.agent = {
enable = true;
# pinentryPackage = pkgs.pinentry-curses;
enableSSHSupport = true;
enable = lib.mkDefault true;
pinentryPackage = lib.mkForce pkgs.pinentry-qt;
enableSSHSupport = lib.mkDefault true;
};
};

View File

@@ -16,6 +16,7 @@
hardware.asahi.enable = true;
hardware.asahi.useExperimentalGPUDriver = true;
hardware.asahi.peripheralFirmwareDirectory = ./firmware;
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
@@ -59,6 +60,7 @@
users.users.matt = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.fish;
packages = with pkgs; [
firefox
tree
@@ -67,6 +69,7 @@
box64
#minecraft
prismlauncher
#vmware-horizon-client
];
};