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