Indentation

This commit is contained in:
Benson Chu 2025-07-15 13:38:53 -05:00
parent 657c7b8f9a
commit ba809ac6f2

View file

@ -49,28 +49,29 @@
(map mkSystem ["NixDawn" "NixFrame"])) (map mkSystem ["NixDawn" "NixFrame"]))
// { // {
NixGate = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
modules = [
./common/configuration.nix
./hosts/NixGate/configuration.nix
];
};
NixSentinel = nixpkgs.lib.nixosSystem { NixGate = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
./common/configuration.nix ./common/configuration.nix
./hosts/NixSentinel/configuration.nix ./hosts/NixGate/configuration.nix
]; ];
}; };
# LenoNix = nixpkgs.lib.nixosSystem { NixSentinel = nixpkgs.lib.nixosSystem {
# system = "x86_64-linux"; inherit system;
# modules = [ ./hosts/NixFrame/configuration.nix ]; specialArgs = { inherit inputs; };
# }; modules = [
./common/configuration.nix
./hosts/NixSentinel/configuration.nix
];
};
# LenoNix = nixpkgs.lib.nixosSystem {
# system = "x86_64-linux";
# modules = [ ./hosts/NixFrame/configuration.nix ];
# };
}; };
packages."${system}" = { packages."${system}" = {