forked from foxora/nix
added back stable branch, broken though because cerulean no support channel overrides
This commit is contained in:
parent
8b8c9cf585
commit
d63d04d301
10 changed files with 87 additions and 69 deletions
28
snow.nix
28
snow.nix
|
|
@ -7,9 +7,25 @@ cerulean.mkNexus ./. (self: {
|
|||
home-manager.nixosModules.home-manager
|
||||
];
|
||||
|
||||
nodes = {
|
||||
groups = {
|
||||
unstable-base = {};
|
||||
servers = {};
|
||||
};
|
||||
|
||||
nodes = let
|
||||
inherit
|
||||
(self.nexus)
|
||||
groups
|
||||
;
|
||||
in
|
||||
{
|
||||
nixarawrui = {
|
||||
system = "x86_64-linux";
|
||||
|
||||
groups = [
|
||||
groups.unstable-base
|
||||
];
|
||||
|
||||
extraModules = with inputs; [
|
||||
sddm-silent.nixosModules.default
|
||||
];
|
||||
|
|
@ -17,6 +33,11 @@ cerulean.mkNexus ./. (self: {
|
|||
|
||||
arcturus = {
|
||||
system = "x86_64-linux";
|
||||
|
||||
groups = [
|
||||
groups.servers
|
||||
];
|
||||
|
||||
deploy.ssh = {
|
||||
host = "10.16.1.163";
|
||||
port = 2222;
|
||||
|
|
@ -26,6 +47,11 @@ cerulean.mkNexus ./. (self: {
|
|||
|
||||
lyra = {
|
||||
system = "x86_64-linux";
|
||||
|
||||
groups = [
|
||||
groups.servers
|
||||
];
|
||||
|
||||
deploy.ssh = {
|
||||
host = "10.16.1.58";
|
||||
port = 2222;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue