mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
...depot, without readtree
This commit is contained in:
parent
d8b3918a8f
commit
fbaacf54ed
15 changed files with 42 additions and 46 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, profiles, ... }: with lib; {
|
||||
{ depot, lib, config, ... }: with lib; {
|
||||
config = {
|
||||
deploy.targets.infra = {
|
||||
tf = {
|
||||
|
|
@ -15,7 +15,7 @@ config = {
|
|||
network.nodes.athame = {
|
||||
imports = lib.hostImport {
|
||||
hostName = "athame";
|
||||
inherit profiles;
|
||||
inherit (depot) profiles;
|
||||
};
|
||||
networking = {
|
||||
hostName = "athame";
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{ config, users, lib, pkgs, profiles, services, ... }:
|
||||
{ depot, config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
# Imports
|
||||
|
||||
imports = [
|
||||
imports = with depot; [
|
||||
profiles.hardware.hcloud-imperative
|
||||
users.kat.server
|
||||
services.fail2ban
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, profiles, ... }: with lib; {
|
||||
{ lib, config, depot, ... }: with lib; {
|
||||
config = {
|
||||
deploy.targets.beltane = {
|
||||
tf = {
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
network.nodes.beltane = {
|
||||
imports = lib.hostImport {
|
||||
hostName = "beltane";
|
||||
inherit profiles;
|
||||
inherit (depot) profiles;
|
||||
};
|
||||
networking = {
|
||||
hostName = "beltane";
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{ config, lib, pkgs, profiles, services, users, tf, ... }:
|
||||
{ depot, tf, config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
# Imports
|
||||
|
||||
imports = [
|
||||
imports = with depot; [
|
||||
profiles.hardware.rm-310
|
||||
profiles.gui
|
||||
users.kat.guiFull
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, profiles, ... }: with lib; {
|
||||
{ lib, config, depot, ... }: with lib; {
|
||||
config = {
|
||||
deploy.targets.ostara = {
|
||||
tf = {
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
network.nodes.ostara = {
|
||||
imports = lib.hostImport {
|
||||
hostName = "ostara";
|
||||
inherit profiles;
|
||||
inherit (depot) profiles;
|
||||
};
|
||||
networking = {
|
||||
hostName = "ostara";
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{ lib, config, users, pkgs, profiles, services, ... }:
|
||||
{ depot, config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
# Imports
|
||||
|
||||
imports = [
|
||||
imports = with depot; [
|
||||
profiles.hardware.eeepc-1015pem
|
||||
profiles.laptop
|
||||
services.kattv
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, profiles, ... }: with lib; {
|
||||
{ lib, config, depot, ... }: with lib; {
|
||||
config = {
|
||||
deploy.targets.personal = {
|
||||
tf = {
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
network.nodes.samhain = {
|
||||
imports = lib.hostImport {
|
||||
hostName = "samhain";
|
||||
inherit profiles;
|
||||
inherit (depot) profiles;
|
||||
};
|
||||
networking = {
|
||||
hostName = "samhain";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ tf, config, users, pkgs, lib, profiles, sources, services, ... }:
|
||||
{ depot, tf, config, pkgs, lib, sources, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
|
|
@ -9,7 +9,7 @@ let
|
|||
in {
|
||||
# Imports
|
||||
|
||||
imports = [
|
||||
imports = with depot; [
|
||||
profiles.hardware.ms-7b86
|
||||
profiles.gui
|
||||
profiles.vfio
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, profiles, ... }: with lib; {
|
||||
{ lib, config, depot, ... }: with lib; {
|
||||
config = {
|
||||
deploy.targets.personal = {
|
||||
tf = {
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
network.nodes.yule = {
|
||||
imports = lib.hostImport {
|
||||
hostName = "yule";
|
||||
inherit profiles;
|
||||
inherit (depot) profiles;
|
||||
};
|
||||
networking = {
|
||||
hostName = "yule";
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{ config, users, pkgs, lib, profiles, services, ... }:
|
||||
{ depot, config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
# Imports
|
||||
|
||||
imports = [
|
||||
imports = with depot; [
|
||||
profiles.hardware.v330-14arr
|
||||
profiles.gui
|
||||
profiles.laptop
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue