Indentation
This commit is contained in:
parent
657c7b8f9a
commit
ba809ac6f2
1 changed files with 21 additions and 20 deletions
41
flake.nix
41
flake.nix
|
|
@ -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}" = {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue