flake: switch back entire config to unstable

Mixing stable and unstable brought me weird problems, so I'm switching
back to unstable entirely until it breaks hard enough to convince me to
go back to stable. :)
This commit is contained in:
Antoine Martin 2021-08-19 23:34:41 +02:00
parent 12c60e9d2e
commit bdd0748620
8 changed files with 24 additions and 37 deletions

View file

@ -38,7 +38,7 @@ in
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Environment = [];
ExecStart = "${pkgs.unstable.fava}/bin/fava -H 127.0.0.1 -p ${toString cfg.port} ${cfg.filePath}";
ExecStart = "${pkgs.fava}/bin/fava -H 127.0.0.1 -p ${toString cfg.port} ${cfg.filePath}";
WorkingDirectory = cfg.home;
User = "fava";
Group = "fava";

View file

@ -16,12 +16,7 @@ in
config = mkIf cfg.enable {
services.tailscale = {
enable = true;
package = pkgs.unstable.tailscale;
};
# FIXME: remove when upgrading to 21.11, added to module by default
systemd.services.tailscaled = {
path = [ pkgs.procps ];
package = pkgs.tailscale;
};
networking.firewall = {