Format repo
This commit is contained in:
parent
3169149045
commit
8160b9da0b
37 changed files with 643 additions and 392 deletions
|
@ -1,13 +1,17 @@
|
|||
{ nixpkgs, nglib, ... }:
|
||||
{
|
||||
nixpkgs,
|
||||
nglib,
|
||||
...
|
||||
}:
|
||||
nglib.makeSystem {
|
||||
inherit nixpkgs;
|
||||
system = "x86_64-linux";
|
||||
name = "nixng-attic";
|
||||
|
||||
config = { ... }: {
|
||||
config = {...}: {
|
||||
dumb-init = {
|
||||
enable = true;
|
||||
type.services = { };
|
||||
type.services = {};
|
||||
};
|
||||
|
||||
init.services.attic = {
|
||||
|
@ -22,7 +26,7 @@ nglib.makeSystem {
|
|||
# This is done because we quote the template for the toml file.
|
||||
# See: https://github.com/helmfile/vals?tab=readme-ov-file#expression-syntax
|
||||
# database.url = "ref+sops://secrets.yml#attic/databaseURL+";
|
||||
database = { };
|
||||
database = {};
|
||||
|
||||
storage = {
|
||||
type = "local";
|
||||
|
|
|
@ -1,13 +1,18 @@
|
|||
{ globals, nixpkgs, nglib, ... }:
|
||||
{
|
||||
globals,
|
||||
nixpkgs,
|
||||
nglib,
|
||||
...
|
||||
}:
|
||||
nglib.makeSystem {
|
||||
inherit nixpkgs;
|
||||
system = "x86_64-linux";
|
||||
name = "nixng-dnsmasq";
|
||||
|
||||
config = { ... }: {
|
||||
config = {...}: {
|
||||
dumb-init = {
|
||||
enable = true;
|
||||
type.services = { };
|
||||
type.services = {};
|
||||
};
|
||||
|
||||
init.services.dnsmasq = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue