Fix typos
This commit is contained in:
parent
84f9ac9948
commit
1863504ddc
1 changed files with 15 additions and 1 deletions
|
@ -168,7 +168,21 @@
|
|||
system ? "x86_64-linux",
|
||||
gpu ? null,
|
||||
theme ? "default",
|
||||
repo ? "nixpkgs", unfree ? false, format }: inputs.nixos-generators.nixosGenerate { specialArgs = { inherit inputs outputs desktop hostname username gpu system theme format; # Choose whether to pull from stable or unstable pkgs = let packages = (import ./packages.nix { inherit inputs repo system unfree; }); in packages.pkgs; pkgs-unstable = let packages = (import ./packages.nix { inherit inputs repo system unfree; }); in packages.pkgs-unstable; }; system = system; format = format; modules = [
|
||||
repo ? "nixpkgs",
|
||||
unfree ? false,
|
||||
format
|
||||
}: inputs.nixos-generators.nixosGenerate {
|
||||
specialArgs = {
|
||||
inherit inputs outputs desktop hostname username gpu system theme format;
|
||||
# Choose whether to pull from stable or unstable
|
||||
pkgs = let packages = (import ./packages.nix { inherit inputs repo system unfree; }); in packages.pkgs;
|
||||
pkgs-unstable = let packages = (import ./packages.nix { inherit inputs repo system unfree; }); in packages.pkgs-unstable;
|
||||
};
|
||||
|
||||
system = system;
|
||||
format = format;
|
||||
|
||||
modules = [
|
||||
../nixos/base.nix
|
||||
../nixos/common/modules/installer.nix
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
|
|
Loading…
Add table
Reference in a new issue