a
This commit is contained in:
parent
689e1cd642
commit
d8a27362fc
|
@ -52,6 +52,7 @@
|
|||
# Available through 'nixos-rebuild build --flake .#phoenix'
|
||||
nixosConfigurations = {
|
||||
phoenix = unstable.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./hosts/phoenix/configuration.nix
|
||||
|
@ -59,6 +60,7 @@
|
|||
};
|
||||
|
||||
pc = unstable.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./hosts/pc/configuration.nix
|
||||
|
@ -66,6 +68,7 @@
|
|||
};
|
||||
|
||||
stuff = stable.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./hosts/stuff/configuration.nix
|
||||
|
@ -73,6 +76,7 @@
|
|||
};
|
||||
|
||||
enry = stable.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./hosts/enry/configuration.nix
|
||||
|
|
Loading…
Reference in a new issue