fix(*): adapt to nixos-24.05 changes

This commit is contained in:
steveej 2024-06-01 21:46:09 +02:00
parent ae86a8b860
commit 4c18f0a7ab
12 changed files with 56 additions and 27 deletions

View file

@ -58,7 +58,6 @@ in {
home.packages = [
pkgs.nil
pkgs.rnix-lsp
pkgs.nixd
pkgs.nixpkgs-fmt
pkgs.alejandra

View file

@ -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. Its perfectly fine and recommended to leave