fixing a LOT of typos

This commit is contained in:
Chris Kruining 2024-07-22 13:03:19 +02:00
parent 795bb17857
commit b183b789b4
25 changed files with 57 additions and 65 deletions

View file

@ -22,9 +22,9 @@
import pkgs {
inherit system;
config.allowUnfree = true;
overlays = extraOverlays ++ (lib.attrValues self.overlays);
overlays = extraOverlays;
};
pkgs = mkPkgs nixpkgs [self.overlays.default];
pkgs = mkPkgs nixpkgs [];
pkgs-unstable = mkPkgs nixpkgs-unstable [];
lib = nixpkgs.lib.extend (final: prev: {
@ -48,21 +48,5 @@
nixosConfigurations = mapHosts ./hosts {};
devShells."${system}".default = import ./shell.nix { inherit lib pkgs; };
# nixosConfigurations = {
# pc = nixpkgs.lib.nixosSystem {
# specialArgs = {inherit inputs;};
# modules = [
# ./hosts/pc/default.nix
# inputs.home-manager.nixosModules.default
# inputs.stylix.nixosModules.stylix
# ];
# };
# };
};
}