fix typos
This commit is contained in:
parent
b230995fcc
commit
05b6628aa2
|
@ -11,7 +11,7 @@ There are 3 main templates in this repository:
|
||||||
|
|
||||||
#### With Darwin (macOS)
|
#### With Darwin (macOS)
|
||||||
|
|
||||||
1. Run `nix flake new -t github:auxolotl/templates#darwin NixFiles` in the teminal. This will setup the basic configuration for the system, this generate a configuration for you from the files located in the `darwin` directory.
|
1. Run `nix flake new -t github:auxolotl/templates#darwin NixFiles` in the terminal. This will setup the basic configuration for the system, this generate a configuration for you from the files located in the `darwin` directory.
|
||||||
2. The next step is to go into the `NixFiles` directory this can be achieved by running `cd NixFiles`.
|
2. The next step is to go into the `NixFiles` directory this can be achieved by running `cd NixFiles`.
|
||||||
3. Now we you need to read over the configuration files and make any changes that you see fit, some of these must include changing your username and hostname.
|
3. Now we you need to read over the configuration files and make any changes that you see fit, some of these must include changing your username and hostname.
|
||||||
4. You now must rebuild this configuration we can do this with `darwin-rebuild switch --flake .`. This assumes that your host name has not changed.
|
4. You now must rebuild this configuration we can do this with `darwin-rebuild switch --flake .`. This assumes that your host name has not changed.
|
||||||
|
@ -30,4 +30,4 @@ Congratulations, you are now using Aux!
|
||||||
|
|
||||||
1. Run `nix flake new -t github:auxolotyl/templates#home-manager NixFiles` to start
|
1. Run `nix flake new -t github:auxolotyl/templates#home-manager NixFiles` to start
|
||||||
2. Move into your new Nix system with `cd NixFiles`
|
2. Move into your new Nix system with `cd NixFiles`
|
||||||
3. Fill in your `username` in `flake.nix`
|
3. Fill in your `username` in `flake.nix`
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
# this allows the system builder to use substitutes
|
# this allows the system builder to use substitutes
|
||||||
builders-use-substitutes = true;
|
builders-use-substitutes = true;
|
||||||
|
|
||||||
# we want these beacuse we don't have to build every package from source
|
# we want these because we don't have to build every package from source
|
||||||
substituters = [ "https://nix-community.cachix.org" ];
|
substituters = [ "https://nix-community.cachix.org" ];
|
||||||
trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
|
trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
# The `follows` keyword in inputs is used for inheritance.
|
# The `follows` keyword in inputs is used for inheritance.
|
||||||
# we do this in order to prevent duplication of the nixpkgs input, and potential
|
# we do this in order to prevent duplication of the nixpkgs input, and potential
|
||||||
# issues with diffrent versions of given packages.
|
# issues with different versions of given packages.
|
||||||
# However, it should be noted that this can lead to having to rebuild packages from source.
|
# However, it should be noted that this can lead to having to rebuild packages from source.
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home = {
|
home = {
|
||||||
# rember we set this in our flake.nix file
|
# remember we set this in our flake.nix file
|
||||||
username = username;
|
username = username;
|
||||||
homeDirectory = "/Users/${username}";
|
homeDirectory = "/Users/${username}";
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
# The `follows` keyword in inputs is used for inheritance.
|
# The `follows` keyword in inputs is used for inheritance.
|
||||||
# we do this in order to prevent duplication of the nixpkgs input, and potential
|
# we do this in order to prevent duplication of the nixpkgs input, and potential
|
||||||
# issues with diffrent versions of given packages.
|
# issues with different versions of given packages.
|
||||||
# However, it should be noted that this can lead to having to rebuild packages from source.
|
# However, it should be noted that this can lead to having to rebuild packages from source.
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue