flake.lock: Update

Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/c42fcfbdfeae23e68fc520f9182dde9f38ad1890?narHash=sha256-9tUadhnZQbWIiYVXH8ncfGXGvkNq3Hag4RCBEMUk7MI%3D' (2024-08-17)
  → 'github:NixOS/nixpkgs/f1bad50880bae73ff2d82fafc22010b4fc097a9c?narHash=sha256-D5HwjQw/02fuXbR4LCTo64koglP2j99hkDR79/3yLOE%3D' (2024-08-19)
This commit is contained in:
Chris Dombroski 2024-08-21 06:04:16 +00:00
parent c2a3c18ef5
commit 5309a90345
2 changed files with 5 additions and 5 deletions

View file

@ -276,11 +276,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1723938990, "lastModified": 1724098845,
"narHash": "sha256-9tUadhnZQbWIiYVXH8ncfGXGvkNq3Hag4RCBEMUk7MI=", "narHash": "sha256-D5HwjQw/02fuXbR4LCTo64koglP2j99hkDR79/3yLOE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c42fcfbdfeae23e68fc520f9182dde9f38ad1890", "rev": "f1bad50880bae73ff2d82fafc22010b4fc097a9c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -148,10 +148,10 @@
}; };
zwave-js-ui = { zwave-js-ui = {
image = "my-zwave-js-ui:latest"; image = "my-zwave-js-ui:latest";
imageFile = pkgs.dockerTools.buildImage { imageFile = pkgs.dockerTools.buildLayeredImage {
name = "my-zwave-js-ui"; name = "my-zwave-js-ui";
tag = "latest"; tag = "latest";
copyToRoot = with pkgs; [cacert]; contents = with pkgs; [cacert];
config.Cmd = [ "${pkgs.zwave-js-ui}/bin/zwave-js-ui" ]; config.Cmd = [ "${pkgs.zwave-js-ui}/bin/zwave-js-ui" ];
}; };
volumes = [ "zwave-config:/usr/src/app/store" ]; volumes = [ "zwave-config:/usr/src/app/store" ];