flake.nix: Expose modules in flake
This commit is contained in:
parent
6beb8db05a
commit
e777528435
@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../modules
|
|
||||||
|
|
||||||
./backup.nix
|
./backup.nix
|
||||||
./locale.nix
|
./locale.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
|
@ -92,6 +92,11 @@
|
|||||||
|
|
||||||
nixosConfigurations = helper.mapToNixosConfigurations self.clerie.hosts;
|
nixosConfigurations = helper.mapToNixosConfigurations self.clerie.hosts;
|
||||||
|
|
||||||
|
nixosModules = {
|
||||||
|
clerie = import ./modules;
|
||||||
|
default = self.nixosModules.clerie;
|
||||||
|
};
|
||||||
|
|
||||||
overlays = {
|
overlays = {
|
||||||
nixfilesInputs = import ./flake/overlay.nix inputs;
|
nixfilesInputs = import ./flake/overlay.nix inputs;
|
||||||
clerie = import ./pkgs/overlay.nix;
|
clerie = import ./pkgs/overlay.nix;
|
||||||
|
@ -11,6 +11,7 @@ rec {
|
|||||||
in localNixpkgs.lib.nixosSystem {
|
in localNixpkgs.lib.nixosSystem {
|
||||||
system = system;
|
system = system;
|
||||||
modules = modules ++ [
|
modules = modules ++ [
|
||||||
|
self.nixosModules.clerie
|
||||||
({ ... }: {
|
({ ... }: {
|
||||||
/*
|
/*
|
||||||
Make the contents of the flake availiable to modules.
|
Make the contents of the flake availiable to modules.
|
||||||
|
Loading…
Reference in New Issue
Block a user