feat: adding the server configuration
This commit is contained in:
parent
7b7a1e5ae5
commit
90ea287d60
4 changed files with 170 additions and 13 deletions
37
flake.nix
37
flake.nix
|
|
@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue