fix(*): adapt to nixos-24.05 changes
This commit is contained in:
parent
ae86a8b860
commit
4c18f0a7ab
12 changed files with 56 additions and 27 deletions
|
@ -3,6 +3,7 @@
|
|||
lib,
|
||||
config,
|
||||
repoFlake,
|
||||
nodeFlake,
|
||||
nodeName,
|
||||
...
|
||||
}: {
|
||||
|
@ -73,7 +74,9 @@
|
|||
|
||||
containers = {
|
||||
mailserver = import ../../containers/mailserver.nix {
|
||||
inherit repoFlake;
|
||||
specialArgs = {
|
||||
inherit repoFlake nodeFlake;
|
||||
};
|
||||
|
||||
autoStart = true;
|
||||
|
||||
|
@ -87,7 +90,9 @@
|
|||
webserver =
|
||||
import ../../containers/webserver.nix
|
||||
{
|
||||
inherit repoFlake;
|
||||
specialArgs = {
|
||||
inherit repoFlake nodeFlake;
|
||||
};
|
||||
|
||||
autoStart = true;
|
||||
|
||||
|
@ -99,6 +104,9 @@
|
|||
};
|
||||
|
||||
syncthing = import ../../containers/syncthing.nix {
|
||||
specialArgs = {
|
||||
inherit repoFlake nodeFlake;
|
||||
};
|
||||
autoStart = true;
|
||||
|
||||
hostAddress = "192.168.100.14";
|
||||
|
@ -108,10 +116,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
home-manager.users.steveej = import ../../../home-manager/configuration/text-minimal.nix {
|
||||
inherit pkgs;
|
||||
};
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue