bonfire/nixosConfigurations/default.nix
L-Nafaryus 7c8f579ef9
All checks were successful
nix / check (push) Successful in 2m2s
astora: replace eww with ags
config: remove eww
new: lib.preconfiguredModules: homeManager module ags
2024-07-21 17:14:58 +05:00

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;};
};
}