mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
Improve style of inherit
This commit is contained in:
parent
251c663781
commit
105474b0df
1 changed files with 2 additions and 4 deletions
|
|
@ -43,8 +43,7 @@
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
north = nixpkgs.lib.nixosSystem {
|
north = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit self;
|
inherit self inputs;
|
||||||
inherit inputs;
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/north
|
./hosts/north
|
||||||
|
|
@ -53,8 +52,7 @@
|
||||||
};
|
};
|
||||||
inspiron = nixpkgs.lib.nixosSystem {
|
inspiron = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit self;
|
inherit self inputs;
|
||||||
inherit inputs;
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/inspiron
|
./hosts/inspiron
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue