mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
config: remove inputs
extraArgs
It isn't exactly used much and also it is not really meant to be used in that way even though it is still Nix data.
This commit is contained in:
parent
71640c761c
commit
051e7fb3c4
@ -124,7 +124,6 @@
|
||||
|
||||
extraArgs = {
|
||||
inherit (inputs) nix-colors;
|
||||
inherit inputs;
|
||||
|
||||
# This is a variable that is used to check whether the module is
|
||||
# exported or not. Useful for configuring parts of the configuration
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, config, pkgs, inputs, modulesPath, ... }:
|
||||
{ lib, config, pkgs, ... }:
|
||||
|
||||
# Since this will be exported as an installer ISO, you'll have to keep in mind
|
||||
# about the added imports from nixos-generators. In this case, it simply adds
|
||||
@ -11,7 +11,7 @@
|
||||
|
||||
# Store the source code in a easy-to-locate path.
|
||||
contents = [{
|
||||
source = inputs.self;
|
||||
source = ../..;
|
||||
target = "/etc/nixos/";
|
||||
}];
|
||||
};
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, config, pkgs, inputs, modulesPath, ... }:
|
||||
{ lib, config, pkgs, modulesPath, ... }:
|
||||
|
||||
# Since this will be exported as an installer ISO, you'll have to keep in mind
|
||||
# about the added imports from nixos-generators. In this case, it simply adds
|
||||
@ -13,7 +13,7 @@
|
||||
|
||||
# Put the source code somewhere easy to see.
|
||||
contents = [{
|
||||
source = inputs.self;
|
||||
source = ../..;
|
||||
target = "/etc/nixos";
|
||||
}];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user