allow redistributable firmware, add micro to system, update flake

This commit is contained in:
Reid 2024-03-03 15:22:09 -08:00
parent bab272ff03
commit 106c5c3ad7
2 changed files with 15 additions and 13 deletions

View file

@ -32,18 +32,20 @@ in {
};
};
time.timeZone = mkDefault "America/Los_Angeles";
i18n.defaultLocale = mkDefault "en_US.UTF-8";
hardware.enableRedistributableFirmware = true;
environment.systemPackages = with pkgs; [
unrar unzip
micro
curl wget
# nixos-rebuild w/ flakes does not work without git
# do not remove this
# nix is awesome
# im pretty sure removing this breaks nixos-rebuild
# have fun
git
];
time.timeZone = mkDefault "America/Los_Angeles";
i18n.defaultLocale = mkDefault "en_US.UTF-8";
system.stateVersion = mkDefault "23.11";
}