I hereby claim:
- I am juxuanu on github.
- I am icarns (https://keybase.io/icarns) on keybase.
- I have a public key whose fingerprint is 650E 0794 3412 FCAB 596B FB3B 9763 B57D 3701 E741
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Service definition: ~/.config/systemd/user/auto-protonvpn.service
[Unit]
Description=ProtonVPN Connection
After=network-online.target
BindsTo=network-online.target
[Service]
Type=oneshot
ExecStart=/usr/bin/protonvpn-cli ks --off ; /usr/bin/protonvpn-cli connect -f/etc/pacman.d/mirrorlist:
Server = https://cloudflaremirrors.com/archlinux/$repo/os/$arch
Server = https://mirrors.gandi.net/archlinux/$repo/os/$arch
Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch
Server = https://mirror.facebook.net/archlinux/$repo/os/$arch
No need for Reflector 😉
| # This config: https://gist.githubusercontent.com/juxuanu/d9327709fb56ffacb6e3e1e4ff8ad94a/raw/configuration.nix | |
| # Flatpak apps: https://gist.githubusercontent.com/juxuanu/819267fed67cf5308a8efea42298c2d2/raw/flatpak-list.txt | |
| { config, pkgs, ... }: | |
| let | |
| unstableTarball = | |
| fetchTarball | |
| https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz; | |
| in | |
| { |
| app.drey.Dialect | |
| app.drey.EarTag | |
| app.drey.Warp | |
| ar.xjuan.Cambalache | |
| com.belmoussaoui.Decoder | |
| com.belmoussaoui.Obfuscate | |
| com.brave.Browser | |
| com.dec05eba.gpu_screen_recorder | |
| com.getpostman.Postman | |
| com.github.GradienceTeam.Gradience |
| class Error { | |
| public readonly generatedAt: Date; | |
| constructor(public readonly message: string) { | |
| this.generatedAt = new Date(); | |
| } | |
| } | |
| const isError = (input: unknown): input is Error => input instanceof Error; |