kalessin: add to readme and allow overwriting profiles for remote builds
This commit is contained in:
parent
e2f5407c75
commit
58a4c5ecc0
|
@ -10,6 +10,7 @@ The canonical location for this repository is https://git.qenya.tel/qenya/nixfil
|
|||
* `tohru`: Dell Latitude 5300, personal laptop
|
||||
* `yevaud`: Oracle Cloud free AMD VM, hosts a Forgejo instance and WireGuard server for the other machines in the network
|
||||
* `orm`: Oracle Cloud free AMD VM, currently idling
|
||||
* `kalessin`: Oracle Cloud free ARM VM, currently idling
|
||||
|
||||
### Referenced only
|
||||
* `kilgharrah`: Custom-built personal desktop, currently running Arch
|
||||
|
|
9
hive.nix
9
hive.nix
|
@ -2,8 +2,8 @@ let sources = import ./npins;
|
|||
in {
|
||||
meta.nixpkgs = sources.nixpkgs;
|
||||
|
||||
defaults = { name, nodes, ... }: {
|
||||
deployment.replaceUnknownProfiles = false;
|
||||
defaults = { name, nodes, config, lib, pkgs, ... }: {
|
||||
deployment.replaceUnknownProfiles = lib.mkDefault false;
|
||||
networking.hostName = name;
|
||||
|
||||
nixpkgs.config = {
|
||||
|
@ -63,7 +63,10 @@ in {
|
|||
kalessin = { name, nodes, ... }: {
|
||||
networking.hostId = "534b538e";
|
||||
time.timeZone = "Etc/UTC";
|
||||
deployment.buildOnTarget = true;
|
||||
deployment = {
|
||||
buildOnTarget = true;
|
||||
replaceUnknownProfiles = true;
|
||||
};
|
||||
|
||||
imports = [
|
||||
./deployment/remote.nix
|
||||
|
|
Loading…
Reference in a new issue