blob: ac88ae1df28b0ecd8ae6aa00a22117cdd6822031 (
plain)
1
2
3
4
5
6
7
8
|
import os
import sys
def main():
env = os.environ.copy()
env["LOCALE_ARCHIVE"] = "/usr/lib/locale/locale-archive"
os.execve("/home/alex/.local/bin/nix-portable", ("nix-portable", "nix", "shell", "nixpkgs#newsboat", "-c", "newsboat"), env)
|