nixfmt update formatter changes

This commit is contained in:
Kevin Baensch 2024-12-31 16:34:44 +01:00
parent fe9ec52785
commit ebd66cbfb4
Signed by: derped
GPG key ID: C0F1D326C7626543
3 changed files with 21 additions and 14 deletions

View file

@ -76,16 +76,21 @@
inherit system;
inherit fn;
};
modules = [
(
{ config, ... }:
{
config.nixpkgs.overlays = [ nixpkgs-wayland.overlay ];
}
)
(toString ./options/machine.nix)
sops-nix.nixosModules.sops
] ++ machineFiles ++ configFiles ++ pkgsFiles ++ serviceFiles;
modules =
[
(
{ config, ... }:
{
config.nixpkgs.overlays = [ nixpkgs-wayland.overlay ];
}
)
(toString ./options/machine.nix)
sops-nix.nixosModules.sops
]
++ machineFiles
++ configFiles
++ pkgsFiles
++ serviceFiles;
};
};
in