(fix) Use self instead of outputs in specialArgs
This commit is contained in:
parent
20b984a017
commit
baf40b3c13
1 changed files with 4 additions and 4 deletions
|
@ -64,7 +64,7 @@
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
sakotop = nixpkgs.lib.nixosSystem {
|
sakotop = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs self;};
|
||||||
modules = [
|
modules = [
|
||||||
./default.nix
|
./default.nix
|
||||||
./hosts/sakotop/configuration.nix
|
./hosts/sakotop/configuration.nix
|
||||||
|
@ -72,14 +72,14 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
sakopc = nixpkgs.lib.nixosSystem {
|
sakopc = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs self;};
|
||||||
modules = [
|
modules = [
|
||||||
./default.nix
|
./default.nix
|
||||||
./hosts/sakopc/configuration.nix
|
./hosts/sakopc/configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
#sakoserver = nixpkgs.lib.nixosSystem {
|
#sakoserver = nixpkgs.lib.nixosSystem {
|
||||||
# specialArgs = {inherit inputs outputs;};
|
# specialArgs = {inherit inputs self;};
|
||||||
# modules = [
|
# modules = [
|
||||||
# ./default.nix
|
# ./default.nix
|
||||||
# ./hosts/sakoserver/configuration.nix
|
# ./hosts/sakoserver/configuration.nix
|
||||||
|
@ -88,7 +88,7 @@
|
||||||
sakowsl = nixpkgs.lib.nixosSystem {
|
sakowsl = nixpkgs.lib.nixosSystem {
|
||||||
# because theres no hardware-configuration.nix
|
# because theres no hardware-configuration.nix
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs self;};
|
||||||
modules = [
|
modules = [
|
||||||
{nix.registry.nixpkgs.flake = nixpkgs;}
|
{nix.registry.nixpkgs.flake = nixpkgs;}
|
||||||
./hosts/sakowsl/configuration.nix
|
./hosts/sakowsl/configuration.nix
|
||||||
|
|
Loading…
Reference in a new issue