fixing my ape like code

This commit is contained in:
ooks-io 2023-07-31 16:32:50 +12:00
parent 943fed2916
commit a54e7d9673
8 changed files with 117 additions and 10 deletions

View file

@ -13,7 +13,7 @@
};
outputs = { self, nixpkgs, home-manager, ... }:
outputs = { self, nixpkgs, home-manager, ... }@inputs:
let
inherit (self) outputs;
system = "x86_64-linux";
@ -28,7 +28,7 @@
nixosConfigurations = {
# X1 Carbon
ooksx1 = lib.nixosSystem {
modules = [ ./system/ooksx1 ];
modules = [ ./system/ooksx1/ooksx1.nix ];
specialArgs = { inherit inputs outputs; };
};
};