{"id":21184488,"url":"https://github.com/azurehex/debian","last_synced_at":"2025-07-10T00:33:31.689Z","repository":{"id":263164924,"uuid":"889315001","full_name":"AzureHex/Debian","owner":"AzureHex","description":"💻 Debian WSL Config ....","archived":false,"fork":false,"pushed_at":"2024-11-16T16:28:28.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-16T17:25:09.047Z","etag":null,"topics":["debian","dotfiles"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AzureHex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-16T03:53:55.000Z","updated_at":"2024-11-16T16:28:31.000Z","dependencies_parsed_at":"2024-11-16T17:25:36.606Z","dependency_job_id":"efd559b3-deb5-4daf-8abf-3d6b0914d0f1","html_url":"https://github.com/AzureHex/Debian","commit_stats":null,"previous_names":["azurehex/debian"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AzureHex%2FDebian","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AzureHex%2FDebian/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AzureHex%2FDebian/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AzureHex%2FDebian/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AzureHex","download_url":"https://codeload.github.com/AzureHex/Debian/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225606571,"owners_count":17495551,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["debian","dotfiles"],"created_at":"2024-11-20T18:09:04.864Z","updated_at":"2024-11-20T18:09:05.769Z","avatar_url":"https://github.com/AzureHex.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WSL config\n```sh\nsudo bash -c 'cat \u003c\u003cEOL \u003e /etc/wsl.conf\n[boot]\nsystemd=true\nEOL'\n\n# System Update \u0026 git install\nsudo apt update \u0026\u0026 sudo apt upgrade -y\nsudo apt install git curl -y\n\n# Add Docker's official GPG key:\nsudo apt-get update\nsudo apt-get install ca-certificates curl\nsudo install -m 0755 -d /etc/apt/keyrings\nsudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc\nsudo chmod a+r /etc/apt/keyrings/docker.asc\n\n# Add the repository to Apt sources:\necho \\\n  \"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \\\n  $(. /etc/os-release \u0026\u0026 echo \"$VERSION_CODENAME\") stable\" | \\\n  sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null\nsudo apt-get update\n\n# docker\nsudo usermod -aG docker $USER\n\nsudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y\n\n# Homebrew Install\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n```\n\n```sh\n# Homebrew Formulae\nbrew install autin fish nushell starship fastfetch neovim yazi unzip lsd bat duf tldr tree tty-clock glances speedtest-cli btop tmux ffmpeg mailsy\n\n# neovims\ngit clone --depth 1 https://github.com/AstroNvim/template ~/.config/AstroNvim\ngit clone https://github.com/LazyVim/starter ~/.config/LazyVim\ngit clone https://github.com/NvChad/starter ~/.config/NvChad\n\n# Create directories\nmkdir -p ~/downloads ~/docker/filebrowser ~/.zsh ~/.local/share/tldr\n\n# Updating tldr pages\ntldr -u\n\n# yazi plugin\ngit clone https://gitee.com/DreamMaoMao/searchjump.yazi.git ~/.config/yazi/plugins/searchjump.yazi\n\n# Navigate to the filebrowser directory\ncd ~/docker/filebrowser\n\n# Create the database file\ntouch filebrowser.db\n\n# Create the docker-compose.yml file\ncat \u003c\u003cEOL \u003e compose.yml\nservices:\n  file-browser:\n    image: filebrowser/filebrowser:latest\n    container_name: filebrowser\n    user: 1000:1000\n    privileged: true\n    environment:\n      - TZ=Asia/Kolkata\n    ports:\n      - 8081:80\n    volumes:\n      - /:/srv\n      - /home/eyes/docker/filebrowser/filebrowser.db:/database.db\n    restart: unless-stopped\n    networks:\n      - net\n\nnetworks:\n  net:\n    external: true\n    name: net\nEOL\n\ndocker compose up -d\n\necho \"Setup complete!\"\n```\n\n```sh\n# Install fisher | fish plugins manager\ncurl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source \u0026\u0026 fisher install jorgebucaran/fisher\n```\n\n```sh\nfisher install PatrickF1/fzf.fish\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurehex%2Fdebian","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazurehex%2Fdebian","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurehex%2Fdebian/lists"}