mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: adds posy host
This commit is contained in:
parent
a43d035257
commit
d9b9208aa8
2 changed files with 12 additions and 7 deletions
17
flake.nix
17
flake.nix
|
|
@ -40,7 +40,6 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
(import ./hosts/sakura)
|
(import ./hosts/sakura)
|
||||||
# sops-nix.nixosModules.sops
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "sakura";
|
host = "sakura";
|
||||||
|
|
@ -51,7 +50,6 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
(import ./hosts/yoshino)
|
(import ./hosts/yoshino)
|
||||||
# sops-nix.nixosModules.sops
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "yoshino";
|
host = "yoshino";
|
||||||
|
|
@ -62,7 +60,6 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
(import ./hosts/ichiyo)
|
(import ./hosts/ichiyo)
|
||||||
# sops-nix.nixosModules.sops
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "ichiyo";
|
host = "ichiyo";
|
||||||
|
|
@ -73,7 +70,6 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
(import ./hosts/violet)
|
(import ./hosts/violet)
|
||||||
# sops-nix.nixosModules.sops
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "violet";
|
host = "violet";
|
||||||
|
|
@ -84,7 +80,6 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
(import ./hosts/dandelion)
|
(import ./hosts/dandelion)
|
||||||
# sops-nix.nixosModules.sops
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "dandelion";
|
host = "dandelion";
|
||||||
|
|
@ -95,7 +90,6 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
(import ./hosts/lily)
|
(import ./hosts/lily)
|
||||||
# sops-nix.nixosModules.sops
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "lily";
|
host = "lily";
|
||||||
|
|
@ -106,13 +100,22 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
modules = [
|
modules = [
|
||||||
(import ./hosts/zinnia)
|
(import ./hosts/zinnia)
|
||||||
# sops-nix.nixosModules.sops
|
|
||||||
];
|
];
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
host = "zinnia";
|
host = "zinnia";
|
||||||
inherit self inputs username;
|
inherit self inputs username;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
posy = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "aarch64-linux";
|
||||||
|
modules = [
|
||||||
|
(import ./hosts/posy)
|
||||||
|
];
|
||||||
|
specialArgs = {
|
||||||
|
host = "posy";
|
||||||
|
inherit self inputs username;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,8 @@
|
||||||
[ ./../home/default.server.nix ]
|
[ ./../home/default.server.nix ]
|
||||||
else if (host == "lily") then
|
else if (host == "lily") then
|
||||||
[ ./../home/default.server.nix ]
|
[ ./../home/default.server.nix ]
|
||||||
|
else if (host == "posy") then
|
||||||
|
[ ./../home/default.server.nix ]
|
||||||
# else if (host == "yoshino") then
|
# else if (host == "yoshino") then
|
||||||
# [ ./../home/default.nix ]
|
# [ ./../home/default.nix ]
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue