1
0
Fork 0

Update deps

This commit is contained in:
Daniel Kempkens 2023-07-01 16:17:40 +02:00
parent ec3424e2f6
commit f7de47b856
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
5 changed files with 44 additions and 18 deletions

Binary file not shown.

View file

@ -276,11 +276,11 @@
]
},
"locked": {
"lastModified": 1687969886,
"narHash": "sha256-tC2qFLmuM0PFaw0tMHVcFmzsG/351q09qa1EpuL2n1U=",
"lastModified": 1688218897,
"narHash": "sha256-qIBOgrUoQjWzbzC/SOQDGQHnyNkFPGnV3FWOgGKYNGY=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "a7002d6bfca54742d5fc9b485a1879953b4585b9",
"rev": "7a0e9a67824aa05f972459aefc2caafe6fdc0f88",
"type": "github"
},
"original": {
@ -299,11 +299,11 @@
},
"locked": {
"dir": "contrib",
"lastModified": 1688089108,
"narHash": "sha256-kYC/BK172LSeyS43L6QQ2vzazxotUcb2PIkTkZC3uiE=",
"lastModified": 1688170594,
"narHash": "sha256-hJyyC/9DG/UFyF0lUiQyaTzjMejbYH78wSyjgCIeRQ8=",
"owner": "neovim",
"repo": "neovim",
"rev": "d55d7646c129a9afe1da3a61813bb365d178c421",
"rev": "628f6cce80dea9ef15e23a3ded77dc3f0c912b51",
"type": "github"
},
"original": {
@ -324,11 +324,11 @@
"weewx-proxy-flake": "weewx-proxy-flake"
},
"locked": {
"lastModified": 1688113296,
"narHash": "sha256-s8CgQhSffIU/Q4Zcs7g1z+oUwxBznxFc7RqAJVhDBJ0=",
"lastModified": 1688199630,
"narHash": "sha256-BrEN7XhcEYFDUgEyZMBn4itPT7FiwKgdkU4kJB7DLJA=",
"owner": "nifoc",
"repo": "nix-overlay",
"rev": "fbe0f5590630733ea06861ca2eba48c9f0bbac86",
"rev": "1233966dd10cd00e65ccf0a47d238931fb488555",
"type": "github"
},
"original": {
@ -355,11 +355,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1687977148,
"narHash": "sha256-gUcXiU2GgjYIc65GOIemdBJZ+lkQxuyIh7OkR9j0gCo=",
"lastModified": 1688100262,
"narHash": "sha256-RlyMyeya6hClpgyMtKLYjf/watrWpyvlwInj8+d94lc=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "60a783e00517fce85c42c8c53fe0ed05ded5b2a4",
"rev": "3c614fbc76fc152f3e1bc4b2263da6d90adf80fb",
"type": "github"
},
"original": {

View file

@ -107,12 +107,12 @@ in
};
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
version = "2023-06-30";
version = "2023-07-01";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
rev = "393bc5bec591caeedb0a4c696d15946c5d6c2de8";
sha256 = "0nl5vn7i5qaxnsdf1vycfn6f761kgbplin0pgdxf0fg75w3pnm0v";
rev = "3fde1587d0850d46b5a1473e5d1e59254e947496";
sha256 = "12lahz1rdb2509xxjzjhwhprvjk40311ks7x53nwl9dc9cg5gzhy";
fetchSubmodules = false;
};
};
@ -572,12 +572,12 @@ in
};
noice-nvim = buildVimPluginFrom2Nix {
pname = "noice.nvim";
version = "2023-06-30";
version = "2023-07-01";
src = fetchFromGitHub {
owner = "folke";
repo = "noice.nvim";
rev = "2cb37edea88b7baa45324ac7b791f1f1b4e48316";
sha256 = "0xi78d2px2fx4ihnhbaqwpd8awicy6m5dfrcfdg77wra88xl65r9";
rev = "6c87c1d11c38180fb72bf8f45518a0a3e081afc1";
sha256 = "0y0fwll3a421r0px9x2d8mq2nj00w6ahilwmrvmhvnazjgqd074j";
fetchSubmodules = false;
};
};

View file

@ -55,6 +55,8 @@ in
../nixos/websites-tanker.nix
../nixos/wefwef.nix
../../container/matrix
../../container/proxitok
../../container/weewx

24
system/nixos/wefwef.nix Normal file
View file

@ -0,0 +1,24 @@
{
virtualisation.oci-containers.containers.wefwef = {
image = "ghcr.io/aeharding/wefwef:latest";
ports = [ "127.0.0.1:8014:5314" ];
extraOptions = [
"--label=com.centurylinklabs.watchtower.enable=true"
"--label=io.containers.autoupdate=registry"
];
};
services.nginx.virtualHosts."wefwef.daniel.sx" = {
listenAddresses = [ "100.108.165.26" "[fd7a:115c:a1e0:ab12:4843:cd96:626c:a51a]" ];
quic = true;
http3 = true;
onlySSL = true;
useACMEHost = "daniel.sx";
locations."/" = {
recommendedProxySettings = true;
proxyPass = "http://127.0.0.1:8014";
};
};
}