remove hash
This commit is contained in:
parent
1dcade7f66
commit
f49d996ed2
2 changed files with 8 additions and 2 deletions
|
|
@ -12,6 +12,7 @@
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./services/jellyfin.nix
|
./services/jellyfin.nix
|
||||||
|
./services/caddy.nix
|
||||||
# ./services/authentik.nix
|
# ./services/authentik.nix
|
||||||
# ./services/calibre-web.nix
|
# ./services/calibre-web.nix
|
||||||
# ./services/glances.nix
|
# ./services/glances.nix
|
||||||
|
|
@ -141,7 +142,8 @@
|
||||||
neovim
|
neovim
|
||||||
emacs
|
emacs
|
||||||
vim
|
vim
|
||||||
|
unixtools.netstat
|
||||||
|
|
||||||
tmux #like screen
|
tmux #like screen
|
||||||
wiper #like ncdu
|
wiper #like ncdu
|
||||||
systemctl-tui #systemd tui
|
systemctl-tui #systemd tui
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,15 @@
|
||||||
services.caddy = {
|
services.caddy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.caddy.withPlugins {
|
package = pkgs.caddy.withPlugins {
|
||||||
|
|
||||||
plugins = [ "github.com/caddy-dns/gandi@v1.1.0" ];
|
plugins = [ "github.com/caddy-dns/gandi@v1.1.0" ];
|
||||||
hash = "";
|
hash = "";
|
||||||
# hash = "sha256-F/jqR4iEsklJFycTjSaW8B/V3iTGqqGOzwYBUXxRKrc=";
|
# hash = "sha256-F/jqR4iEsklJFycTjSaW8B/V3iTGqqGOzwYBUXxRKrc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
virtualHosts."localhost".extraConfig = ''
|
||||||
|
respond "Hello, world!"
|
||||||
|
'';
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue