L-Nafaryus
7c8f579ef9
All checks were successful
nix / check (push) Successful in 2m2s
config: remove eww new: lib.preconfiguredModules: homeManager module ags
34 lines
664 B
Nix
34 lines
664 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
bonModules,
|
|
bonLib,
|
|
self,
|
|
...
|
|
}: {
|
|
astora = lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = with inputs; [
|
|
home-manager.nixosModules.home-manager
|
|
bonModules.bonfire
|
|
./astora
|
|
];
|
|
specialArgs = {
|
|
inherit inputs bonLib;
|
|
bonPkgs = self.packages.x86_64-linux;
|
|
};
|
|
};
|
|
|
|
catarina = lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = with inputs; [
|
|
nixos-mailserver.nixosModules.mailserver
|
|
sops-nix.nixosModules.sops
|
|
oscuro.nixosModules.oscuro
|
|
bonModules.bonfire
|
|
./catarina
|
|
];
|
|
specialArgs = {bonPkgs = self.packages.x86_64-linux;};
|
|
};
|
|
}
|