19 lines
303 B
Nix
19 lines
303 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake.nixosConfigurations.server02 = inputs.nixpkgs.lib.nixosSystem {
|
|
modules = with self.nixosModules;
|
|
[
|
|
server02Configuration
|
|
core
|
|
]
|
|
++ (with inputs.nix-config.nixosModules; [
|
|
nvim
|
|
git
|
|
zsh
|
|
]);
|
|
};
|
|
}
|