diff --git a/flake.lock b/flake.lock index 13359206..d1adada2 100644 --- a/flake.lock +++ b/flake.lock @@ -197,11 +197,11 @@ }, "nixpkgs-master": { "locked": { - "lastModified": 1661839252, - "narHash": "sha256-wtHBnsgeEKW/OyI/VxrN1pUfyIOxAIkbuijWesUbmv8=", + "lastModified": 1661842206, + "narHash": "sha256-6xJAFeZ9voQJ4kNYSVodNQ3VlEnj9RKJ0kpYhCSIFNQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "30897d37099e1c59f5eab50e7ddfd3cd6b39ba7f", + "rev": "5b76ccbfc320b305e7500cbd56e034ed6ba233a3", "type": "github" }, "original": { @@ -389,11 +389,11 @@ ] }, "locked": { - "lastModified": 1661838653, - "narHash": "sha256-Q/GwZcl9z2Hwov4zfReo7Si1CsmjWvegZrXZgp3VrhE=", + "lastModified": 1661842962, + "narHash": "sha256-RQhGwEMOvpDbwDh4IH8ZlSsSKUjwu1Y/9ifiVUxFlYY=", "owner": "thexyno", "repo": "blog", - "rev": "a3838e2513d3e1c624252af1edb7f69cb89c6aca", + "rev": "814412507e95f3c5348f8080fb46088878e30dc4", "type": "github" }, "original": { diff --git a/hosts/octopine/default.nix b/hosts/octopine/default.nix index e6e6bb80..c3bce3c9 100644 --- a/hosts/octopine/default.nix +++ b/hosts/octopine/default.nix @@ -68,7 +68,7 @@ in networking.useDHCP = true; networking.networkmanager.enable = mkForce false; services.mjpg-streamer.enable = true; - services.mjpg-streamer.inputPlugin = "input_uvc.so -d /dev/video1 -r 640x480 -f 15 -u"; + services.mjpg-streamer.inputPlugin = "input_uvc.so -d /dev/video1 -r 1280x720 -f 15 -u"; services.xserver.desktopManager.phosh.enable = true; services.xserver.desktopManager.phosh.user = "ragon"; services.xserver.desktopManager.phosh.group = "wheel"; diff --git a/packages/scripts/nosrebuild b/packages/scripts/nosrebuild index dbc77786..66c64421 100755 --- a/packages/scripts/nosrebuild +++ b/packages/scripts/nosrebuild @@ -5,7 +5,7 @@ set -euo pipefail REV=$(curl https://api.github.com/repos/thexyno/nixos-config/branches/main | jq -r .commit.sha) if [[ $(uname) == "Linux" ]]; then - sudo nixos-rebuild switch --flake "github:ragon000/nixos-config?rev=$REV" + sudo nixos-rebuild switch --flake "github:thexyno/nixos-config?rev=$REV" else # Darwin - /nix/var/nix/profiles/system/sw/bin/darwin-rebuild switch --flake "github:ragon000/nixos-config?rev=$REV" + /nix/var/nix/profiles/system/sw/bin/darwin-rebuild switch --flake "github:thexyno/nixos-config?rev=$REV" fi