#!/bin/env fish
begin
    set -l dir (status dirname)
    source "$dir/../../../lib/software.fish"

    function configureSW -V dir -a scope
        sudo nix-channel --add https://nixos.org/channels/nixpkgs-unstable
        sudo nix-channel --update
    end

    runInstaller $argv
end