This commit is contained in:
Reid 2024-12-08 18:30:51 -08:00
parent 9c92ea27e3
commit 8a2127b3d8
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
37 changed files with 75 additions and 67 deletions

View file

@ -6,7 +6,7 @@ let
inherit (lib.my) mapModulesRec';
in {
imports =
[
[
inputs.home-manager.nixosModules.home-manager
(mkAliasOptionModule ["hm"] ["home-manager" "users" config.user.name])
inputs.nix-colors.homeManagerModules.default
@ -29,14 +29,14 @@ in {
# might not be needed? see: https://github.com/NixOS/nixpkgs/commit/e456032addae76701eb17e6c03fc515fd78ad74f
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
registry.nixpkgs.flake = inputs.nixpkgs;
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
keep-outputs = true;
keep-derivations = true;
substituters = [
"https://nix-community.cachix.org"
substituters = [
"https://nix-community.cachix.org"
"https://nixpkgs-wayland.cachix.org"
"https://hyprland.cachix.org"
"https://cache.soopy.moe"
@ -70,7 +70,7 @@ in {
};
time.timeZone = mkDefault "America/Los_Angeles";
i18n.defaultLocale = mkDefault "en_US.UTF-8";
hardware.enableRedistributableFirmware = true;