fix typos

This commit is contained in:
seth 2024-05-01 17:40:06 -04:00
parent b230995fcc
commit 05b6628aa2
Failed to generate hash of commit
5 changed files with 6 additions and 6 deletions

View file

@ -11,7 +11,7 @@ There are 3 main templates in this repository:
#### 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`.
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.
@ -30,4 +30,4 @@ Congratulations, you are now using Aux!
1. Run `nix flake new -t github:auxolotyl/templates#home-manager NixFiles` to start
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`

View file

@ -13,7 +13,7 @@
# this allows the system builder to use substitutes
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" ];
trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];

View file

@ -11,7 +11,7 @@
# The `follows` keyword in inputs is used for inheritance.
# 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.
inputs.nixpkgs.follows = "nixpkgs";
};

View file

@ -3,7 +3,7 @@
# Home Manager needs a bit of information about you and the
# paths it should manage.
home = {
# rember we set this in our flake.nix file
# remember we set this in our flake.nix file
username = username;
homeDirectory = "/Users/${username}";

View file

@ -9,7 +9,7 @@
# The `follows` keyword in inputs is used for inheritance.
# 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.
inputs.nixpkgs.follows = "nixpkgs";
};