Add edison

This commit is contained in:
2023-09-13 23:40:50 +02:00
committed by Felix Albrigtsen
parent 6b8599d30a
commit a0693ca9fc
4 changed files with 124 additions and 0 deletions

View File

@@ -47,6 +47,19 @@
matrix-synapse-next.nixosModules.synapse
];
};
edison = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
};
modules = [
# Overlays-module makes "pkgs.unstable" available in configuration.nix
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/edison/configuration.nix
sops-nix.nixosModules.sops
];
};
chapel = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {