├── .envrc ├── .gitignore ├── .sops.yaml ├── README.md ├── TODO.md ├── docs └── proxmox │ └── lxc_knode.md ├── flake.lock ├── flake.nix ├── hosts ├── knode │ ├── README.md │ ├── configuration.nix │ ├── default.nix │ ├── lxc.conf.md │ └── minimal-configuration.nix ├── lxc │ ├── audio-share │ │ ├── README.md │ │ ├── configuration.nix │ │ ├── default.nix │ │ └── lxc.conf │ ├── common.nix │ ├── load-balancer │ │ ├── README.md │ │ ├── configuration.nix │ │ ├── default.nix │ │ ├── lxc.conf │ │ ├── traefik │ │ │ ├── dynamic_config.nix │ │ │ └── static_config.nix │ │ └── wireguard.nix │ ├── machine-learning │ │ ├── README.md │ │ ├── configs │ │ │ └── llama-swap.yaml │ │ ├── configuration.nix │ │ ├── default.nix │ │ ├── home.nix │ │ └── lxc.conf │ ├── minimal-configuration.nix │ └── network-share │ │ ├── README.md │ │ ├── configuration.nix │ │ ├── default.nix │ │ └── lxc.conf ├── mbp14 │ ├── configuration.nix │ ├── home.nix │ ├── homebrew.nix │ ├── secrets.enc.yaml │ ├── system.nix │ └── zsh.nix ├── mstdo │ ├── configuration.nix │ ├── home.nix │ ├── homebrew.nix │ ├── system.nix │ └── zsh.nix ├── vps │ ├── apps │ │ ├── authelia │ │ │ └── default.nix │ │ ├── firefly-iii │ │ │ ├── default.nix │ │ │ └── router.nix │ │ ├── traefik │ │ │ ├── .env.example │ │ │ ├── .gitignore │ │ │ ├── default.nix │ │ │ ├── file-provider │ │ │ │ ├── auth.nix │ │ │ │ ├── chat.nix │ │ │ │ ├── comfyui.nix │ │ │ │ ├── home.nix │ │ │ │ ├── immich.nix │ │ │ │ ├── jellyfin.nix │ │ │ │ ├── nextcloud.nix │ │ │ │ ├── openchat.nix │ │ │ │ └── yomitosh.nix │ │ │ └── middleware │ │ │ │ ├── authelia.nix │ │ │ │ ├── https_redirect.nix │ │ │ │ ├── landing_page.nix │ │ │ │ └── rate_limit.nix │ │ └── uptime-kuma │ │ │ ├── default.nix │ │ │ └── router.nix │ ├── cloudinit.yml │ ├── configuration.nix │ ├── containers │ │ ├── firefly │ │ │ ├── .cron.env.example │ │ │ ├── .db.env.example │ │ │ ├── .env.example │ │ │ ├── docker-compose.nix │ │ │ └── docker-compose.yml │ │ ├── traefik │ │ │ ├── .env.example │ │ │ ├── .gitignore │ │ │ ├── docker-compose.nix │ │ │ ├── docker-compose.yml │ │ │ ├── file-provider │ │ │ │ ├── actualbudget.yml │ │ │ │ ├── adguard.yml │ │ │ │ ├── astrysk-ollama-testflight.yml │ │ │ │ ├── astrysk-proxmox-testflight.yml │ │ │ │ ├── audiobookshelf.yml │ │ │ │ ├── auth.yml │ │ │ │ ├── code.yml │ │ │ │ ├── discourse.yomis.blog.yml │ │ │ │ ├── dns.yml │ │ │ │ ├── fidi.yml │ │ │ │ ├── finance.yml │ │ │ │ ├── firefly.yml │ │ │ │ ├── ghost.yml │ │ │ │ ├── heimdall.yml │ │ │ │ ├── home.yml │ │ │ │ ├── invoice.yml │ │ │ │ ├── jellyfin.yml │ │ │ │ ├── local.yml │ │ │ │ ├── middleware │ │ │ │ │ ├── authelia.yml │ │ │ │ │ ├── https_redirect.yml │ │ │ │ │ ├── landing_page.yml │ │ │ │ │ ├── rancher.yml │ │ │ │ │ └── rate_limit.yml │ │ │ │ ├── myst.yml │ │ │ │ ├── nextcloud.yml │ │ │ │ ├── ollama.yml │ │ │ │ ├── ombi.yml │ │ │ │ ├── photoprism.yml │ │ │ │ ├── radarr.yml │ │ │ │ ├── s3.yml │ │ │ │ ├── sonarr.yml │ │ │ │ ├── stream1.yml │ │ │ │ ├── stream2.yml │ │ │ │ ├── traefik.yml │ │ │ │ ├── vaultwarden.yml │ │ │ │ ├── yomis.blog.yml │ │ │ │ └── yomitosh.media.yml │ │ │ └── traefik.yml │ │ └── uptime-kuma │ │ │ ├── .gitignore │ │ │ ├── docker-compose.nix │ │ │ └── docker-compose.yml │ ├── hardware-configuration.nix │ ├── home.nix │ ├── networking.nix │ └── wireguard.nix └── x1c6 │ ├── calib-data.bin │ ├── configuration.nix │ ├── hardware-configuration.nix │ ├── home.nix │ └── zsh.nix ├── modules ├── darwin │ ├── apps │ │ ├── default.nix │ │ └── karabiner-elements │ │ │ └── default.nix │ ├── brews │ │ ├── default.nix │ │ ├── docker.nix │ │ ├── groups │ │ │ ├── arm-dev.nix │ │ │ ├── aws-dev.nix │ │ │ ├── azure-dev.nix │ │ │ ├── mobile-dev.nix │ │ │ └── riscv.nix │ │ ├── llama-swap.nix │ │ └── sdl2.nix │ ├── casks │ │ ├── affinity.nix │ │ ├── alt-tab.nix │ │ ├── autodesk-fusion.nix │ │ ├── balenaetcher.nix │ │ ├── blender.nix │ │ ├── brave.nix │ │ ├── bruno.nix │ │ ├── calibre.nix │ │ ├── chatgpt.nix │ │ ├── coconutbattery.nix │ │ ├── cursor.nix │ │ ├── default.nix │ │ ├── devtoys.nix │ │ ├── expo-orbit.nix │ │ ├── figma.nix │ │ ├── firefox.nix │ │ ├── freecad.nix │ │ ├── ghostty.nix │ │ ├── google-chrome.nix │ │ ├── heroic.nix │ │ ├── ice.nix │ │ ├── iina.nix │ │ ├── insta360-studio.nix │ │ ├── karabiner-elements.nix │ │ ├── kicad.nix │ │ ├── logi-options-plus.nix │ │ ├── macs-fan-control.nix │ │ ├── middleclick.nix │ │ ├── moonlight.nix │ │ ├── notion.nix │ │ ├── obs.nix │ │ ├── obsidian.nix │ │ ├── ocenaudio.nix │ │ ├── ollama-app.nix │ │ ├── openscad.nix │ │ ├── orbstack.nix │ │ ├── orca-slicer.nix │ │ ├── orion.nix │ │ ├── private-internet-access.nix │ │ ├── raspberry-pi-imager.nix │ │ ├── raycast.nix │ │ ├── scroll-reverser.nix │ │ ├── serif-apps.nix │ │ ├── spotify.nix │ │ ├── steam.nix │ │ ├── sublime-text.nix │ │ ├── thinkorswim.nix │ │ ├── virtualhere.nix │ │ ├── whisky.nix │ │ ├── windsurf.nix │ │ ├── xcodes-app.nix │ │ ├── zed.nix │ │ ├── zen-twilight.nix │ │ └── zen.nix │ ├── default.nix │ ├── desktop │ │ ├── default.nix │ │ ├── sketchybar │ │ │ ├── default.nix │ │ │ └── sketchybarrc │ │ ├── skhd │ │ │ ├── default.nix │ │ │ └── skhdrc │ │ ├── spacebar │ │ │ └── default.nix │ │ └── yabai │ │ │ ├── default.nix │ │ │ ├── scripts │ │ │ ├── moveWindowLeftAndFollowFocus.sh │ │ │ ├── moveWindowRightAndFollowFocus │ │ │ ├── switchAndFocusSIP.sh │ │ │ └── window-focus-on-destroy.sh │ │ │ └── yabairc │ ├── homebrew.nix │ └── mas │ │ ├── default.nix │ │ ├── groups │ │ ├── core.nix │ │ ├── dev.nix │ │ ├── networking.nix │ │ ├── other.nix │ │ ├── productivity.nix │ │ ├── social.nix │ │ └── utilities.nix │ │ └── overcast.nix ├── home-manager │ ├── apps │ │ ├── bat.nix │ │ ├── bitwarden-cli.nix │ │ ├── blender.nix │ │ ├── calibre.nix │ │ ├── cura.nix │ │ ├── davinci-resolve-studio.nix │ │ ├── default.nix │ │ ├── discord.nix │ │ ├── jq.nix │ │ ├── k9s.nix │ │ ├── karabiner-elements │ │ │ ├── default.nix │ │ │ └── karabiner.json │ │ ├── neovim-unstable.nix │ │ ├── neovim.nix │ │ ├── obs.nix │ │ ├── obsidian.nix │ │ ├── openscad.nix │ │ ├── orca-slicer.nix │ │ ├── prusa-slicer.nix │ │ ├── ripgrep.nix │ │ ├── spacedrive.nix │ │ ├── tree.nix │ │ └── vscode │ │ │ ├── default.nix │ │ │ ├── keybindings.json │ │ │ └── settings.json │ ├── browsers │ │ ├── auto_tab_discard.json │ │ ├── brave.nix │ │ ├── default.nix │ │ ├── firefox.nix │ │ └── vimium_c.json │ ├── casks │ │ ├── default.nix │ │ └── ncdu.nix │ ├── default.nix │ ├── desktop │ │ ├── ags │ │ │ ├── config │ │ │ │ └── config.js │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── dockutil.darwin.nix │ │ ├── fonts.nix │ │ ├── gtk.nix │ │ ├── hyprland │ │ │ ├── default.nix │ │ │ ├── hyprcursor.nix │ │ │ ├── hypridle.nix │ │ │ ├── hyprlock.nix │ │ │ ├── hyprpaper.nix │ │ │ └── packages.nix │ │ ├── rofi │ │ │ ├── default.nix │ │ │ ├── default.nix.old │ │ │ ├── gruvbox-rofi.rasi │ │ │ └── new.default.nix │ │ ├── services │ │ │ ├── batsignal.nix │ │ │ ├── playerctl.nix │ │ │ ├── swaync.nix │ │ │ ├── swayosd.nix │ │ │ └── xdg.nix │ │ ├── theme │ │ │ └── default.nix │ │ ├── waybar │ │ │ └── default.nix │ │ └── xremap.nix │ ├── dev │ │ ├── cargo-bins.nix │ │ ├── default.nix │ │ ├── devenv.nix │ │ ├── github.nix │ │ ├── go.nix │ │ ├── kubectl.nix │ │ ├── llama-cpp.nix │ │ ├── llama-swap.nix │ │ ├── lua.nix │ │ ├── nodejs.nix │ │ ├── ollama.nix │ │ ├── opencode.nix │ │ ├── python.nix │ │ ├── rust.nix │ │ ├── turso.nix │ │ ├── xcodes.nix │ │ └── zig.nix │ ├── monitoring │ │ ├── btop.nix │ │ ├── default.nix │ │ └── ncdu.nix │ ├── music │ │ ├── default.nix │ │ └── spotify.nix │ ├── shell │ │ ├── default.nix │ │ ├── fzf.nix │ │ ├── git.nix │ │ ├── starship.nix │ │ ├── zoxide.nix │ │ └── zsh.nix │ ├── terminal │ │ ├── default.nix │ │ ├── ghostty │ │ │ ├── config │ │ │ └── default.nix │ │ ├── kitty.nix │ │ ├── tmux.nix │ │ ├── wezterm │ │ │ ├── default.nix │ │ │ └── wezterm.lua │ │ └── zellij │ │ │ ├── base-layout.swap.kdl │ │ │ ├── config.kdl │ │ │ ├── default.nix │ │ │ ├── main-layout-bak.kdl │ │ │ ├── primary-layout.kdl │ │ │ ├── primary-layout.swap.kdl │ │ │ ├── quaternary-layout.kdl │ │ │ ├── secondary-layout.kdl │ │ │ └── tertiary-layout.kdl │ └── utils │ │ ├── age.nix │ │ ├── default.nix │ │ ├── ffmpeg.nix │ │ ├── pulseview.nix │ │ ├── ranger.nix │ │ ├── sdl2.nix │ │ ├── sops.nix │ │ └── ssh-to-age.nix └── nixos │ ├── apps │ ├── blueman.nix │ ├── default.nix │ ├── neovim.nix │ └── ripgrep.nix │ ├── clipboard.nix │ ├── default.nix │ ├── desktop │ ├── default.nix │ ├── hyprland.nix │ └── inputs.nix │ ├── dev │ ├── default.nix │ ├── docker.nix │ └── podman.nix │ ├── fonts.nix │ ├── monitoring │ ├── btop.nix │ └── default.nix │ ├── networking │ ├── bluetooth.nix │ ├── default.nix │ ├── iwd.nix │ ├── network-manager.nix │ ├── tailscale.nix │ └── wireguard │ │ └── default.nix │ └── power │ ├── default.nix │ ├── powertop.nix │ └── tlp.nix ├── overlays └── default.nix └── pkgs ├── _sources ├── generated.json ├── generated.nix ├── wezterm-0b50725f67154664292d83681f3f421c6567e3b5 │ └── Cargo.lock └── wezterm-79ce027d3805ed43ff533b19802a4a2e7d9a9623 │ └── Cargo.lock ├── default.nix ├── firefly-iii-data-importer └── default.nix ├── nvfetcher.toml └── wezterm-nightly └── default.nix /.envrc: -------------------------------------------------------------------------------- 1 | export SOPS_AGE_KEY=$(ssh-to-age -i ~/.ssh/id_ed25519 -private-key) 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/.sops.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/proxmox/lxc_knode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/docs/proxmox/lxc_knode.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/flake.nix -------------------------------------------------------------------------------- /hosts/knode/README.md: -------------------------------------------------------------------------------- 1 | # K-Node 2 | 3 | Kubernetes cluster is run in Proxmox LXCs. 4 | -------------------------------------------------------------------------------- /hosts/knode/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/knode/configuration.nix -------------------------------------------------------------------------------- /hosts/knode/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/knode/default.nix -------------------------------------------------------------------------------- /hosts/knode/lxc.conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/knode/lxc.conf.md -------------------------------------------------------------------------------- /hosts/knode/minimal-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/knode/minimal-configuration.nix -------------------------------------------------------------------------------- /hosts/lxc/audio-share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/audio-share/README.md -------------------------------------------------------------------------------- /hosts/lxc/audio-share/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/audio-share/configuration.nix -------------------------------------------------------------------------------- /hosts/lxc/audio-share/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/audio-share/default.nix -------------------------------------------------------------------------------- /hosts/lxc/audio-share/lxc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/audio-share/lxc.conf -------------------------------------------------------------------------------- /hosts/lxc/common.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/common.nix -------------------------------------------------------------------------------- /hosts/lxc/load-balancer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/load-balancer/README.md -------------------------------------------------------------------------------- /hosts/lxc/load-balancer/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/load-balancer/configuration.nix -------------------------------------------------------------------------------- /hosts/lxc/load-balancer/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/load-balancer/default.nix -------------------------------------------------------------------------------- /hosts/lxc/load-balancer/lxc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/load-balancer/lxc.conf -------------------------------------------------------------------------------- /hosts/lxc/load-balancer/traefik/dynamic_config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/load-balancer/traefik/dynamic_config.nix -------------------------------------------------------------------------------- /hosts/lxc/load-balancer/traefik/static_config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/load-balancer/traefik/static_config.nix -------------------------------------------------------------------------------- /hosts/lxc/load-balancer/wireguard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/load-balancer/wireguard.nix -------------------------------------------------------------------------------- /hosts/lxc/machine-learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/machine-learning/README.md -------------------------------------------------------------------------------- /hosts/lxc/machine-learning/configs/llama-swap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/machine-learning/configs/llama-swap.yaml -------------------------------------------------------------------------------- /hosts/lxc/machine-learning/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/machine-learning/configuration.nix -------------------------------------------------------------------------------- /hosts/lxc/machine-learning/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/machine-learning/default.nix -------------------------------------------------------------------------------- /hosts/lxc/machine-learning/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/machine-learning/home.nix -------------------------------------------------------------------------------- /hosts/lxc/machine-learning/lxc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/machine-learning/lxc.conf -------------------------------------------------------------------------------- /hosts/lxc/minimal-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/minimal-configuration.nix -------------------------------------------------------------------------------- /hosts/lxc/network-share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/network-share/README.md -------------------------------------------------------------------------------- /hosts/lxc/network-share/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/network-share/configuration.nix -------------------------------------------------------------------------------- /hosts/lxc/network-share/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/network-share/default.nix -------------------------------------------------------------------------------- /hosts/lxc/network-share/lxc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/lxc/network-share/lxc.conf -------------------------------------------------------------------------------- /hosts/mbp14/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mbp14/configuration.nix -------------------------------------------------------------------------------- /hosts/mbp14/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mbp14/home.nix -------------------------------------------------------------------------------- /hosts/mbp14/homebrew.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mbp14/homebrew.nix -------------------------------------------------------------------------------- /hosts/mbp14/secrets.enc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mbp14/secrets.enc.yaml -------------------------------------------------------------------------------- /hosts/mbp14/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mbp14/system.nix -------------------------------------------------------------------------------- /hosts/mbp14/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mbp14/zsh.nix -------------------------------------------------------------------------------- /hosts/mstdo/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mstdo/configuration.nix -------------------------------------------------------------------------------- /hosts/mstdo/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mstdo/home.nix -------------------------------------------------------------------------------- /hosts/mstdo/homebrew.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mstdo/homebrew.nix -------------------------------------------------------------------------------- /hosts/mstdo/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mstdo/system.nix -------------------------------------------------------------------------------- /hosts/mstdo/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/mstdo/zsh.nix -------------------------------------------------------------------------------- /hosts/vps/apps/authelia/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/authelia/default.nix -------------------------------------------------------------------------------- /hosts/vps/apps/firefly-iii/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/firefly-iii/default.nix -------------------------------------------------------------------------------- /hosts/vps/apps/firefly-iii/router.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/firefly-iii/router.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/.env.example -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/.gitignore -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/default.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/auth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/auth.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/chat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/chat.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/comfyui.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/comfyui.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/home.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/immich.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/immich.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/jellyfin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/jellyfin.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/nextcloud.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/nextcloud.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/openchat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/openchat.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/file-provider/yomitosh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/file-provider/yomitosh.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/middleware/authelia.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/middleware/authelia.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/middleware/https_redirect.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/middleware/https_redirect.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/middleware/landing_page.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/middleware/landing_page.nix -------------------------------------------------------------------------------- /hosts/vps/apps/traefik/middleware/rate_limit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/traefik/middleware/rate_limit.nix -------------------------------------------------------------------------------- /hosts/vps/apps/uptime-kuma/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/uptime-kuma/default.nix -------------------------------------------------------------------------------- /hosts/vps/apps/uptime-kuma/router.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/apps/uptime-kuma/router.nix -------------------------------------------------------------------------------- /hosts/vps/cloudinit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/cloudinit.yml -------------------------------------------------------------------------------- /hosts/vps/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/configuration.nix -------------------------------------------------------------------------------- /hosts/vps/containers/firefly/.cron.env.example: -------------------------------------------------------------------------------- 1 | CRON_URL= -------------------------------------------------------------------------------- /hosts/vps/containers/firefly/.db.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/firefly/.db.env.example -------------------------------------------------------------------------------- /hosts/vps/containers/firefly/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/firefly/.env.example -------------------------------------------------------------------------------- /hosts/vps/containers/firefly/docker-compose.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/firefly/docker-compose.nix -------------------------------------------------------------------------------- /hosts/vps/containers/firefly/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/firefly/docker-compose.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/.env.example -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/.gitignore: -------------------------------------------------------------------------------- 1 | logs/* 2 | acme/* -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/docker-compose.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/docker-compose.nix -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/docker-compose.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/actualbudget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/actualbudget.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/adguard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/adguard.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/astrysk-ollama-testflight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/astrysk-ollama-testflight.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/astrysk-proxmox-testflight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/astrysk-proxmox-testflight.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/audiobookshelf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/audiobookshelf.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/auth.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/code.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/discourse.yomis.blog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/discourse.yomis.blog.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/dns.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/fidi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/fidi.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/finance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/finance.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/firefly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/firefly.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/ghost.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/heimdall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/heimdall.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/home.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/home.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/invoice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/invoice.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/jellyfin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/jellyfin.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/local.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/middleware/authelia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/middleware/authelia.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/middleware/https_redirect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/middleware/https_redirect.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/middleware/landing_page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/middleware/landing_page.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/middleware/rancher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/middleware/rancher.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/middleware/rate_limit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/middleware/rate_limit.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/myst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/myst.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/nextcloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/nextcloud.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/ollama.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/ollama.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/ombi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/ombi.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/photoprism.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/photoprism.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/radarr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/radarr.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/s3.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/sonarr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/sonarr.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/stream1.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/stream2.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/traefik.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/vaultwarden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/vaultwarden.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/yomis.blog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/yomis.blog.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/file-provider/yomitosh.media.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/file-provider/yomitosh.media.yml -------------------------------------------------------------------------------- /hosts/vps/containers/traefik/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/traefik/traefik.yml -------------------------------------------------------------------------------- /hosts/vps/containers/uptime-kuma/.gitignore: -------------------------------------------------------------------------------- 1 | data/* -------------------------------------------------------------------------------- /hosts/vps/containers/uptime-kuma/docker-compose.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/uptime-kuma/docker-compose.nix -------------------------------------------------------------------------------- /hosts/vps/containers/uptime-kuma/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/containers/uptime-kuma/docker-compose.yml -------------------------------------------------------------------------------- /hosts/vps/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/vps/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/home.nix -------------------------------------------------------------------------------- /hosts/vps/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/networking.nix -------------------------------------------------------------------------------- /hosts/vps/wireguard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/vps/wireguard.nix -------------------------------------------------------------------------------- /hosts/x1c6/calib-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/x1c6/calib-data.bin -------------------------------------------------------------------------------- /hosts/x1c6/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/x1c6/configuration.nix -------------------------------------------------------------------------------- /hosts/x1c6/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/x1c6/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/x1c6/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/x1c6/home.nix -------------------------------------------------------------------------------- /hosts/x1c6/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/hosts/x1c6/zsh.nix -------------------------------------------------------------------------------- /modules/darwin/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/apps/default.nix -------------------------------------------------------------------------------- /modules/darwin/apps/karabiner-elements/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/apps/karabiner-elements/default.nix -------------------------------------------------------------------------------- /modules/darwin/brews/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/default.nix -------------------------------------------------------------------------------- /modules/darwin/brews/docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/docker.nix -------------------------------------------------------------------------------- /modules/darwin/brews/groups/arm-dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/groups/arm-dev.nix -------------------------------------------------------------------------------- /modules/darwin/brews/groups/aws-dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/groups/aws-dev.nix -------------------------------------------------------------------------------- /modules/darwin/brews/groups/azure-dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/groups/azure-dev.nix -------------------------------------------------------------------------------- /modules/darwin/brews/groups/mobile-dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/groups/mobile-dev.nix -------------------------------------------------------------------------------- /modules/darwin/brews/groups/riscv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/groups/riscv.nix -------------------------------------------------------------------------------- /modules/darwin/brews/llama-swap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/llama-swap.nix -------------------------------------------------------------------------------- /modules/darwin/brews/sdl2.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/brews/sdl2.nix -------------------------------------------------------------------------------- /modules/darwin/casks/affinity.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/casks/affinity.nix -------------------------------------------------------------------------------- /modules/darwin/casks/alt-tab.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["alt-tab"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/autodesk-fusion.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["autodesk-fusion"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/balenaetcher.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["balenaetcher"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/blender.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["blender"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/brave.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["brave-browser"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/bruno.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/casks/bruno.nix -------------------------------------------------------------------------------- /modules/darwin/casks/calibre.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["calibre"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/chatgpt.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["chatgpt"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/coconutbattery.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = [ "coconutbattery" ]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/cursor.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["cursor"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/casks/default.nix -------------------------------------------------------------------------------- /modules/darwin/casks/devtoys.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["devtoys"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/expo-orbit.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["expo-orbit"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/figma.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["figma"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/firefox.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["firefox"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/freecad.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["freecad"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/ghostty.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["ghostty"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/google-chrome.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["google-chrome"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/heroic.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/casks/heroic.nix -------------------------------------------------------------------------------- /modules/darwin/casks/ice.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["jordanbaird-ice"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/iina.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["iina"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/insta360-studio.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["insta360-studio"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/karabiner-elements.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["karabiner-elements"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/kicad.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/casks/kicad.nix -------------------------------------------------------------------------------- /modules/darwin/casks/logi-options-plus.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["logi-options+"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/macs-fan-control.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["macs-fan-control"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/middleclick.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["middleclick"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/moonlight.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["moonlight"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/notion.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["notion"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/obs.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["obs"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/obsidian.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["obsidian"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/ocenaudio.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["ocenaudio"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/ollama-app.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["ollama-app"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/openscad.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["openscad"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/orbstack.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["orbstack"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/orca-slicer.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["orcaslicer"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/orion.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["orion"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/private-internet-access.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["private-internet-access"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/raspberry-pi-imager.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["raspberry-pi-imager"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/raycast.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["raycast"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/scroll-reverser.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["scroll-reverser"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/serif-apps.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/casks/serif-apps.nix -------------------------------------------------------------------------------- /modules/darwin/casks/spotify.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["spotify"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/steam.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["steam"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/sublime-text.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["sublime-text"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/thinkorswim.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["thinkorswim"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/virtualhere.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/casks/virtualhere.nix -------------------------------------------------------------------------------- /modules/darwin/casks/whisky.nix: -------------------------------------------------------------------------------- 1 | # A modern Wine wrapper for macOS built with SwiftUI 2 | { 3 | homebrew.casks = ["whisky"]; 4 | } 5 | -------------------------------------------------------------------------------- /modules/darwin/casks/windsurf.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["windsurf"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/xcodes-app.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["xcodes-app"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/zed.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["zed"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/zen-twilight.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["zen@twilight"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/casks/zen.nix: -------------------------------------------------------------------------------- 1 | { 2 | homebrew.casks = ["zen"]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/darwin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/default.nix -------------------------------------------------------------------------------- /modules/darwin/desktop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/default.nix -------------------------------------------------------------------------------- /modules/darwin/desktop/sketchybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/sketchybar/default.nix -------------------------------------------------------------------------------- /modules/darwin/desktop/sketchybar/sketchybarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/sketchybar/sketchybarrc -------------------------------------------------------------------------------- /modules/darwin/desktop/skhd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/skhd/default.nix -------------------------------------------------------------------------------- /modules/darwin/desktop/skhd/skhdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/skhd/skhdrc -------------------------------------------------------------------------------- /modules/darwin/desktop/spacebar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/spacebar/default.nix -------------------------------------------------------------------------------- /modules/darwin/desktop/yabai/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/yabai/default.nix -------------------------------------------------------------------------------- /modules/darwin/desktop/yabai/scripts/moveWindowLeftAndFollowFocus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/yabai/scripts/moveWindowLeftAndFollowFocus.sh -------------------------------------------------------------------------------- /modules/darwin/desktop/yabai/scripts/moveWindowRightAndFollowFocus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/yabai/scripts/moveWindowRightAndFollowFocus -------------------------------------------------------------------------------- /modules/darwin/desktop/yabai/scripts/switchAndFocusSIP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/yabai/scripts/switchAndFocusSIP.sh -------------------------------------------------------------------------------- /modules/darwin/desktop/yabai/scripts/window-focus-on-destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/yabai/scripts/window-focus-on-destroy.sh -------------------------------------------------------------------------------- /modules/darwin/desktop/yabai/yabairc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/desktop/yabai/yabairc -------------------------------------------------------------------------------- /modules/darwin/homebrew.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/homebrew.nix -------------------------------------------------------------------------------- /modules/darwin/mas/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/default.nix -------------------------------------------------------------------------------- /modules/darwin/mas/groups/core.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/groups/core.nix -------------------------------------------------------------------------------- /modules/darwin/mas/groups/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/groups/dev.nix -------------------------------------------------------------------------------- /modules/darwin/mas/groups/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/groups/networking.nix -------------------------------------------------------------------------------- /modules/darwin/mas/groups/other.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/groups/other.nix -------------------------------------------------------------------------------- /modules/darwin/mas/groups/productivity.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/groups/productivity.nix -------------------------------------------------------------------------------- /modules/darwin/mas/groups/social.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/groups/social.nix -------------------------------------------------------------------------------- /modules/darwin/mas/groups/utilities.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/darwin/mas/groups/utilities.nix -------------------------------------------------------------------------------- /modules/darwin/mas/overcast.nix: -------------------------------------------------------------------------------- 1 | _: { 2 | homebrew.masApps = {Overcast = 888422857;}; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/bat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/bat.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/bitwarden-cli.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [bitwarden-cli]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/blender.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [blender]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/calibre.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [calibre]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/cura.nix: -------------------------------------------------------------------------------- 1 | # 3D Printer Slicer 2 | {pkgs, ...}: { 3 | home.packages = with pkgs; [cura]; 4 | } 5 | -------------------------------------------------------------------------------- /modules/home-manager/apps/davinci-resolve-studio.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [davinci-resolve-studio]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/default.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/discord.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [discord]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/jq.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [jq]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/k9s.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [k9s]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/karabiner-elements/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/karabiner-elements/default.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/karabiner-elements/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/karabiner-elements/karabiner.json -------------------------------------------------------------------------------- /modules/home-manager/apps/neovim-unstable.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/neovim-unstable.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/neovim.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/obs.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [obs-studio]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/obsidian.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [obsidian]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/openscad.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [openscad]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/orca-slicer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/orca-slicer.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/prusa-slicer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/prusa-slicer.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/ripgrep.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [ripgrep]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/spacedrive.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/spacedrive.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/tree.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}:{ 2 | home.packages = with pkgs; [tree]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/apps/vscode/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/vscode/default.nix -------------------------------------------------------------------------------- /modules/home-manager/apps/vscode/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/vscode/keybindings.json -------------------------------------------------------------------------------- /modules/home-manager/apps/vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/apps/vscode/settings.json -------------------------------------------------------------------------------- /modules/home-manager/browsers/auto_tab_discard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/browsers/auto_tab_discard.json -------------------------------------------------------------------------------- /modules/home-manager/browsers/brave.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/browsers/brave.nix -------------------------------------------------------------------------------- /modules/home-manager/browsers/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/browsers/default.nix -------------------------------------------------------------------------------- /modules/home-manager/browsers/firefox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/browsers/firefox.nix -------------------------------------------------------------------------------- /modules/home-manager/browsers/vimium_c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/browsers/vimium_c.json -------------------------------------------------------------------------------- /modules/home-manager/casks/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/casks/default.nix -------------------------------------------------------------------------------- /modules/home-manager/casks/ncdu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/casks/ncdu.nix -------------------------------------------------------------------------------- /modules/home-manager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/ags/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/ags/config/config.js -------------------------------------------------------------------------------- /modules/home-manager/desktop/ags/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/ags/default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/dockutil.darwin.nix: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/home-manager/desktop/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/fonts.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/gtk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/gtk.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/hyprland/default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/hyprland/hyprcursor.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/hyprland/hyprcursor.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/hyprland/hypridle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/hyprland/hypridle.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/hyprland/hyprlock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/hyprland/hyprlock.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/hyprland/hyprpaper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/hyprland/hyprpaper.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/hyprland/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/hyprland/packages.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/rofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/rofi/default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/rofi/default.nix.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/rofi/default.nix.old -------------------------------------------------------------------------------- /modules/home-manager/desktop/rofi/gruvbox-rofi.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/rofi/gruvbox-rofi.rasi -------------------------------------------------------------------------------- /modules/home-manager/desktop/rofi/new.default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/rofi/new.default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/services/batsignal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/services/batsignal.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/services/playerctl.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/services/playerctl.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/services/swaync.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/services/swaync.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/services/swayosd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/services/swayosd.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/services/xdg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/services/xdg.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/theme/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/theme/default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/waybar/default.nix -------------------------------------------------------------------------------- /modules/home-manager/desktop/xremap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/desktop/xremap.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/cargo-bins.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [cargo-binstall]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/dev/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/default.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/devenv.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [devenv]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/dev/github.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/github.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/go.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/go.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/kubectl.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [kubectl]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/dev/llama-cpp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/llama-cpp.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/llama-swap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/llama-swap.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/lua.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/lua.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/nodejs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/nodejs.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/ollama.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/ollama.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/opencode.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/opencode.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/python.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/python.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/rust.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/rust.nix -------------------------------------------------------------------------------- /modules/home-manager/dev/turso.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [turso-cli]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/dev/xcodes.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [xcodes]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/dev/zig.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/dev/zig.nix -------------------------------------------------------------------------------- /modules/home-manager/monitoring/btop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/monitoring/btop.nix -------------------------------------------------------------------------------- /modules/home-manager/monitoring/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/monitoring/default.nix -------------------------------------------------------------------------------- /modules/home-manager/monitoring/ncdu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/monitoring/ncdu.nix -------------------------------------------------------------------------------- /modules/home-manager/music/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/music/default.nix -------------------------------------------------------------------------------- /modules/home-manager/music/spotify.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [spotify]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/shell/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/shell/default.nix -------------------------------------------------------------------------------- /modules/home-manager/shell/fzf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/shell/fzf.nix -------------------------------------------------------------------------------- /modules/home-manager/shell/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/shell/git.nix -------------------------------------------------------------------------------- /modules/home-manager/shell/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/shell/starship.nix -------------------------------------------------------------------------------- /modules/home-manager/shell/zoxide.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/shell/zoxide.nix -------------------------------------------------------------------------------- /modules/home-manager/shell/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/shell/zsh.nix -------------------------------------------------------------------------------- /modules/home-manager/terminal/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/default.nix -------------------------------------------------------------------------------- /modules/home-manager/terminal/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/ghostty/config -------------------------------------------------------------------------------- /modules/home-manager/terminal/ghostty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/ghostty/default.nix -------------------------------------------------------------------------------- /modules/home-manager/terminal/kitty.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [kitty]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/terminal/tmux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/tmux.nix -------------------------------------------------------------------------------- /modules/home-manager/terminal/wezterm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/wezterm/default.nix -------------------------------------------------------------------------------- /modules/home-manager/terminal/wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/wezterm/wezterm.lua -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/base-layout.swap.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/base-layout.swap.kdl -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/config.kdl -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/default.nix -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/main-layout-bak.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/main-layout-bak.kdl -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/primary-layout.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/primary-layout.kdl -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/primary-layout.swap.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/primary-layout.swap.kdl -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/quaternary-layout.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/quaternary-layout.kdl -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/secondary-layout.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/secondary-layout.kdl -------------------------------------------------------------------------------- /modules/home-manager/terminal/zellij/tertiary-layout.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/terminal/zellij/tertiary-layout.kdl -------------------------------------------------------------------------------- /modules/home-manager/utils/age.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/utils/age.nix -------------------------------------------------------------------------------- /modules/home-manager/utils/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/utils/default.nix -------------------------------------------------------------------------------- /modules/home-manager/utils/ffmpeg.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [ffmpeg_7-full]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/utils/pulseview.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [pulseview]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/utils/ranger.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [ranger]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/utils/sdl2.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [SDL2]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/utils/sops.nix: -------------------------------------------------------------------------------- 1 | {pkgs, ...}: { 2 | home.packages = with pkgs; [sops]; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home-manager/utils/ssh-to-age.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/home-manager/utils/ssh-to-age.nix -------------------------------------------------------------------------------- /modules/nixos/apps/blueman.nix: -------------------------------------------------------------------------------- 1 | { 2 | services.blueman.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /modules/nixos/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/apps/default.nix -------------------------------------------------------------------------------- /modules/nixos/apps/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/apps/neovim.nix -------------------------------------------------------------------------------- /modules/nixos/apps/ripgrep.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/apps/ripgrep.nix -------------------------------------------------------------------------------- /modules/nixos/clipboard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/clipboard.nix -------------------------------------------------------------------------------- /modules/nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/default.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/desktop/default.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/hyprland.nix: -------------------------------------------------------------------------------- 1 | {...}: { 2 | programs.hyprland.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /modules/nixos/desktop/inputs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/desktop/inputs.nix -------------------------------------------------------------------------------- /modules/nixos/dev/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/dev/default.nix -------------------------------------------------------------------------------- /modules/nixos/dev/docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/dev/docker.nix -------------------------------------------------------------------------------- /modules/nixos/dev/podman.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/dev/podman.nix -------------------------------------------------------------------------------- /modules/nixos/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/fonts.nix -------------------------------------------------------------------------------- /modules/nixos/monitoring/btop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/monitoring/btop.nix -------------------------------------------------------------------------------- /modules/nixos/monitoring/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/monitoring/default.nix -------------------------------------------------------------------------------- /modules/nixos/networking/bluetooth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/networking/bluetooth.nix -------------------------------------------------------------------------------- /modules/nixos/networking/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/networking/default.nix -------------------------------------------------------------------------------- /modules/nixos/networking/iwd.nix: -------------------------------------------------------------------------------- 1 | { 2 | networking.wireless.iwd.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /modules/nixos/networking/network-manager.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/networking/network-manager.nix -------------------------------------------------------------------------------- /modules/nixos/networking/tailscale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/networking/tailscale.nix -------------------------------------------------------------------------------- /modules/nixos/networking/wireguard/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/networking/wireguard/default.nix -------------------------------------------------------------------------------- /modules/nixos/power/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/power/default.nix -------------------------------------------------------------------------------- /modules/nixos/power/powertop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/power/powertop.nix -------------------------------------------------------------------------------- /modules/nixos/power/tlp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/modules/nixos/power/tlp.nix -------------------------------------------------------------------------------- /overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/overlays/default.nix -------------------------------------------------------------------------------- /pkgs/_sources/generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/_sources/generated.json -------------------------------------------------------------------------------- /pkgs/_sources/generated.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/_sources/generated.nix -------------------------------------------------------------------------------- /pkgs/_sources/wezterm-0b50725f67154664292d83681f3f421c6567e3b5/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/_sources/wezterm-0b50725f67154664292d83681f3f421c6567e3b5/Cargo.lock -------------------------------------------------------------------------------- /pkgs/_sources/wezterm-79ce027d3805ed43ff533b19802a4a2e7d9a9623/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/_sources/wezterm-79ce027d3805ed43ff533b19802a4a2e7d9a9623/Cargo.lock -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/default.nix -------------------------------------------------------------------------------- /pkgs/firefly-iii-data-importer/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/firefly-iii-data-importer/default.nix -------------------------------------------------------------------------------- /pkgs/nvfetcher.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/nvfetcher.toml -------------------------------------------------------------------------------- /pkgs/wezterm-nightly/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abayomi185/nix-dotfiles/HEAD/pkgs/wezterm-nightly/default.nix --------------------------------------------------------------------------------