feat: adding the server configuration

This commit is contained in:
Raphael 2025-03-16 20:21:45 +01:00
parent 7b7a1e5ae5
commit 90ea287d60
4 changed files with 170 additions and 13 deletions

View file

@ -17,20 +17,31 @@
config.allowUnfree = true;
};
in {
nixosConfigurations."nixos-fix" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/fix/configuration.nix
];
specialArgs = {
inherit inputs;
nixosConfigurations = {
"nixos-fix" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/fix/configuration.nix
];
specialArgs = {
inherit inputs;
};
};
"nixos-server" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/server/configuration.nix
];
specialArgs = {
inherit inputs;
};
};
"nixos-asahi" = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [
./hosts/asahi/configuration.nix
];
};
};
nixosConfigurations."nixos-asahi" = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = [
./hosts/asahi/configuration.nix
];
};
};
}