Configuration for my NixOS based systems and Home Manager

autoformat

+3 -28
+3 -28
flake.nix
··· 71 71 forAllSystems = nixpkgs.lib.genAttrs supportedSystems; 72 72 in 73 73 { 74 - nixosConfigurations.${name} = inputs.nixpkgs.lib.nixosSystem { 75 - inherit system; 76 - specialArgs = { inherit unstable inputs; }; 74 + nixosConfigurations.misaki = inputs.nixpkgs.lib.nixosSystem { 75 + system = "x86_64-linux"; 76 + specialArgs = { inherit unstable inputs home-manager; }; 77 77 modules = [ 78 78 determinite.nixosModules.default 79 79 ./configuration.nix ··· 90 90 # Optionally, use home-manager.extraSpecialArgs to pass 91 91 # arguments to home.nix 92 92 } 93 - #./hardware-configuration.nix 94 - #./boot.nix 95 - #./networking.nix 96 - #./users.nix 97 - #./packages.nix 98 - #./services.nix 99 - # See configuration.nix for more information on this one 100 - #( 101 - # { ... }: 102 - # { 103 - # time.timeZone = "America/Chicago"; 104 - # i18n.defaultLocale = "en_US.UTF-8"; 105 - # system.copySystemConfiguration = true; 106 - # documentation.man.generateCaches = true; 107 - # system.autoUpgrade = { 108 - # enable = true; 109 - # dates = "09:00"; 110 - # randomizedDelaySec = "45min"; 111 - # }; 112 - # nix.gc.automatic = true; 113 - # nix.gc.options = "--delete-older-than 8d"; 114 - # system.stateVersion = "23.11"; # Did you read the comment? 115 - # } 116 - #) 117 93 ]; 118 - specialArgs = { inherit home-manager nixpkgs-unstable; }; 119 94 }; 120 95 homeConfigurations."noah" = home-manager.lib.homeManagerConfiguration { 121 96 inherit pkgs;