Move nix code under nix/

This commit is contained in:
R-VdP 2023-02-01 17:39:07 +00:00
parent fe6fb907f7
commit 929da3e3c3
No known key found for this signature in database
3 changed files with 2 additions and 2 deletions

View file

@ -8,9 +8,9 @@
outputs = { self, nixpkgs, flake-utils }: { outputs = { self, nixpkgs, flake-utils }: {
serviceConfig = self.lib.makeServiceConfig { serviceConfig = self.lib.makeServiceConfig {
system = flake-utils.lib.system.x86_64-linux; system = flake-utils.lib.system.x86_64-linux;
module = { imports = [ ./modules ]; }; module = { imports = [ ./nix/modules ]; };
}; };
lib = import ./lib.nix { inherit nixpkgs; }; lib = import ./nix/lib.nix { inherit nixpkgs; };
}; };
} }