├── .envrc ├── .gitignore ├── .sops.yaml ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── flake ├── jet │ └── default.nix ├── juniper │ └── default.nix ├── mica │ └── default.nix └── sage │ └── default.nix ├── hardware ├── jet │ ├── default.nix │ └── firmware │ │ ├── all_firmware.tar.gz │ │ └── kernelcache.release.mac14g ├── juniper │ └── default.nix ├── mica │ └── default.nix └── sage │ └── default.nix ├── homes ├── jet │ └── default.nix ├── juniper │ └── default.nix ├── mica │ └── default.nix └── sage │ └── default.nix ├── hosts ├── jet │ └── default.nix ├── juniper │ └── default.nix ├── mica │ └── default.nix └── sage │ └── default.nix ├── modules ├── base │ ├── jet │ │ ├── default.nix │ │ ├── gdm │ │ │ └── default.nix │ │ └── networkmanager │ │ │ └── default.nix │ ├── juniper │ │ ├── chrony │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── docker │ │ │ └── default.nix │ │ ├── firewall │ │ │ └── default.nix │ │ └── samba │ │ │ └── default.nix │ ├── mica │ │ ├── chrony │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── docker │ │ │ └── default.nix │ │ ├── firewall │ │ │ └── default.nix │ │ └── samba │ │ │ └── default.nix │ ├── sage │ │ ├── amdgpu │ │ │ └── default.nix │ │ ├── ananicy │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── flatpak │ │ │ └── default.nix │ │ ├── gamemode │ │ │ └── default.nix │ │ ├── gamescope │ │ │ └── default.nix │ │ ├── networkmanager │ │ │ └── default.nix │ │ ├── ollama │ │ │ └── default.nix │ │ ├── pipewire │ │ │ └── default.nix │ │ └── steam │ │ │ └── default.nix │ └── shared │ │ ├── _core │ │ └── default.nix │ │ ├── bluetooth │ │ └── default.nix │ │ ├── dbus │ │ └── default.nix │ │ ├── default.nix │ │ ├── easyeffects │ │ └── default.nix │ │ ├── fontconfig │ │ └── default.nix │ │ ├── keyring │ │ └── default.nix │ │ ├── netbird │ │ └── default.nix │ │ ├── nh │ │ └── default.nix │ │ ├── platformio │ │ └── default.nix │ │ ├── remote-builder │ │ └── default.nix │ │ ├── sudo-rs │ │ └── default.nix │ │ ├── systemd-boot │ │ └── default.nix │ │ ├── tailscale │ │ └── default.nix │ │ ├── virt-manager │ │ └── default.nix │ │ ├── waydroid │ │ └── default.nix │ │ ├── xdg │ │ └── default.nix │ │ └── zram │ │ └── default.nix ├── home │ ├── default.nix │ ├── jet │ │ ├── default.nix │ │ ├── firefox │ │ │ ├── config │ │ │ │ ├── betterfox.js │ │ │ │ ├── custom.js │ │ │ │ ├── mountain.xpi │ │ │ │ └── zen.js │ │ │ └── default.nix │ │ ├── fish │ │ │ └── default.nix │ │ ├── foot │ │ │ └── default.nix │ │ ├── hyprland │ │ │ └── default.nix │ │ ├── hyprlock │ │ │ └── default.nix │ │ ├── mako │ │ │ └── default.nix │ │ ├── niri │ │ │ └── default.nix │ │ ├── tofi │ │ │ └── default.nix │ │ ├── vesktop │ │ │ ├── config │ │ │ │ ├── frappe.css │ │ │ │ └── gruvbox-dark-hard.css │ │ │ └── default.nix │ │ ├── vicinae │ │ │ └── default.nix │ │ ├── vscode │ │ │ └── default.nix │ │ ├── waybar │ │ │ ├── default.nix │ │ │ ├── default.nix.txt │ │ │ └── scripts │ │ │ │ └── pingServer.sh │ │ └── yazi │ │ │ ├── config │ │ │ └── theme.toml │ │ │ └── default.nix │ ├── juniper │ │ ├── default.nix │ │ └── fish │ │ │ └── default.nix │ ├── mica │ │ ├── default.nix │ │ └── fish │ │ │ └── default.nix │ ├── sage │ │ ├── default.nix │ │ ├── firefox │ │ │ ├── config │ │ │ │ ├── betterfox.js │ │ │ │ ├── custom.js │ │ │ │ └── userChrome.css │ │ │ └── default.nix │ │ ├── fish │ │ │ └── default.nix │ │ ├── foot │ │ │ └── default.nix │ │ ├── hyprland │ │ │ └── default.nix │ │ ├── hyprlock │ │ │ └── default.nix │ │ ├── mako │ │ │ └── default.nix │ │ ├── mangohud │ │ │ └── default.nix │ │ ├── niri │ │ │ └── default.nix │ │ ├── tofi │ │ │ └── default.nix │ │ ├── vesktop │ │ │ ├── config │ │ │ │ └── frappe.css │ │ │ └── default.nix │ │ ├── vicinae │ │ │ └── default.nix │ │ ├── vscode │ │ │ └── default.nix │ │ └── waybar │ │ │ ├── default.nix │ │ │ └── scripts │ │ │ └── pingServer.sh │ └── shared │ │ ├── alacritty │ │ ├── config │ │ │ └── default │ │ └── default.nix │ │ ├── default.nix │ │ ├── direnv │ │ └── default.nix │ │ ├── dunst │ │ └── default.nix │ │ ├── emacs │ │ └── default.nix │ │ ├── eza │ │ └── default.nix │ │ ├── fastfetch │ │ └── default.nix │ │ ├── fonts │ │ └── default.nix │ │ ├── git │ │ └── default.nix │ │ ├── gpg │ │ └── default.nix │ │ ├── hyprsunset │ │ └── default.nix │ │ ├── i3 │ │ └── default.nix │ │ ├── mpd │ │ ├── config │ │ │ └── ncmpcpp.conf │ │ └── default.nix │ │ ├── polybar │ │ ├── config │ │ │ ├── default │ │ │ ├── launch.sh │ │ │ └── old │ │ └── default.nix │ │ ├── prismlauncher │ │ └── default.nix │ │ ├── starship │ │ └── default.nix │ │ ├── sway │ │ └── default.nix │ │ ├── theme │ │ └── default.nix │ │ ├── utilities │ │ └── default.nix │ │ ├── wofi │ │ └── default.nix │ │ ├── zed │ │ └── default.nix │ │ └── zoxide │ │ └── default.nix └── module.txt ├── overlays └── default.nix ├── packages ├── TX02 │ ├── TX-02-Regular.otf │ ├── TX-02-Retina.otf │ └── default.nix ├── arnis │ └── default.nix ├── default.nix ├── helium │ └── default.nix ├── pragmatapro │ ├── PragmataPro-Bold.ttf │ ├── PragmataPro.ttf │ └── default.nix └── widevinecdm-aarch64 │ └── default.nix ├── secrets ├── access-tokens.yaml ├── containers │ └── caddy.yaml ├── default.yaml ├── email.yaml ├── k3s.yaml ├── networks │ ├── eduroam.yaml │ ├── trooli.yaml │ └── wifinity.yaml └── ssh-keys.yaml └── shell.nix /.envrc: -------------------------------------------------------------------------------- 1 | use nix -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv 2 | 3 | **/.DS_Store -------------------------------------------------------------------------------- /.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/.sops.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/flake.nix -------------------------------------------------------------------------------- /flake/jet/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/flake/jet/default.nix -------------------------------------------------------------------------------- /flake/juniper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/flake/juniper/default.nix -------------------------------------------------------------------------------- /flake/mica/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/flake/mica/default.nix -------------------------------------------------------------------------------- /flake/sage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/flake/sage/default.nix -------------------------------------------------------------------------------- /hardware/jet/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hardware/jet/default.nix -------------------------------------------------------------------------------- /hardware/jet/firmware/all_firmware.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hardware/jet/firmware/all_firmware.tar.gz -------------------------------------------------------------------------------- /hardware/jet/firmware/kernelcache.release.mac14g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hardware/jet/firmware/kernelcache.release.mac14g -------------------------------------------------------------------------------- /hardware/juniper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hardware/juniper/default.nix -------------------------------------------------------------------------------- /hardware/mica/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hardware/mica/default.nix -------------------------------------------------------------------------------- /hardware/sage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hardware/sage/default.nix -------------------------------------------------------------------------------- /homes/jet/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/homes/jet/default.nix -------------------------------------------------------------------------------- /homes/juniper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/homes/juniper/default.nix -------------------------------------------------------------------------------- /homes/mica/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/homes/mica/default.nix -------------------------------------------------------------------------------- /homes/sage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/homes/sage/default.nix -------------------------------------------------------------------------------- /hosts/jet/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hosts/jet/default.nix -------------------------------------------------------------------------------- /hosts/juniper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hosts/juniper/default.nix -------------------------------------------------------------------------------- /hosts/mica/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hosts/mica/default.nix -------------------------------------------------------------------------------- /hosts/sage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/hosts/sage/default.nix -------------------------------------------------------------------------------- /modules/base/jet/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/jet/default.nix -------------------------------------------------------------------------------- /modules/base/jet/gdm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/jet/gdm/default.nix -------------------------------------------------------------------------------- /modules/base/jet/networkmanager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/jet/networkmanager/default.nix -------------------------------------------------------------------------------- /modules/base/juniper/chrony/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/juniper/chrony/default.nix -------------------------------------------------------------------------------- /modules/base/juniper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/juniper/default.nix -------------------------------------------------------------------------------- /modules/base/juniper/docker/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/juniper/docker/default.nix -------------------------------------------------------------------------------- /modules/base/juniper/firewall/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/juniper/firewall/default.nix -------------------------------------------------------------------------------- /modules/base/juniper/samba/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/juniper/samba/default.nix -------------------------------------------------------------------------------- /modules/base/mica/chrony/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/mica/chrony/default.nix -------------------------------------------------------------------------------- /modules/base/mica/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/mica/default.nix -------------------------------------------------------------------------------- /modules/base/mica/docker/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/mica/docker/default.nix -------------------------------------------------------------------------------- /modules/base/mica/firewall/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/mica/firewall/default.nix -------------------------------------------------------------------------------- /modules/base/mica/samba/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/mica/samba/default.nix -------------------------------------------------------------------------------- /modules/base/sage/amdgpu/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/amdgpu/default.nix -------------------------------------------------------------------------------- /modules/base/sage/ananicy/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/ananicy/default.nix -------------------------------------------------------------------------------- /modules/base/sage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/default.nix -------------------------------------------------------------------------------- /modules/base/sage/flatpak/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/flatpak/default.nix -------------------------------------------------------------------------------- /modules/base/sage/gamemode/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/gamemode/default.nix -------------------------------------------------------------------------------- /modules/base/sage/gamescope/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/gamescope/default.nix -------------------------------------------------------------------------------- /modules/base/sage/networkmanager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/networkmanager/default.nix -------------------------------------------------------------------------------- /modules/base/sage/ollama/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/ollama/default.nix -------------------------------------------------------------------------------- /modules/base/sage/pipewire/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/pipewire/default.nix -------------------------------------------------------------------------------- /modules/base/sage/steam/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/sage/steam/default.nix -------------------------------------------------------------------------------- /modules/base/shared/_core/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/_core/default.nix -------------------------------------------------------------------------------- /modules/base/shared/bluetooth/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/bluetooth/default.nix -------------------------------------------------------------------------------- /modules/base/shared/dbus/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/dbus/default.nix -------------------------------------------------------------------------------- /modules/base/shared/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/default.nix -------------------------------------------------------------------------------- /modules/base/shared/easyeffects/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/easyeffects/default.nix -------------------------------------------------------------------------------- /modules/base/shared/fontconfig/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/fontconfig/default.nix -------------------------------------------------------------------------------- /modules/base/shared/keyring/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/keyring/default.nix -------------------------------------------------------------------------------- /modules/base/shared/netbird/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/netbird/default.nix -------------------------------------------------------------------------------- /modules/base/shared/nh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/nh/default.nix -------------------------------------------------------------------------------- /modules/base/shared/platformio/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/platformio/default.nix -------------------------------------------------------------------------------- /modules/base/shared/remote-builder/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/remote-builder/default.nix -------------------------------------------------------------------------------- /modules/base/shared/sudo-rs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/sudo-rs/default.nix -------------------------------------------------------------------------------- /modules/base/shared/systemd-boot/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/systemd-boot/default.nix -------------------------------------------------------------------------------- /modules/base/shared/tailscale/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/tailscale/default.nix -------------------------------------------------------------------------------- /modules/base/shared/virt-manager/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/virt-manager/default.nix -------------------------------------------------------------------------------- /modules/base/shared/waydroid/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/waydroid/default.nix -------------------------------------------------------------------------------- /modules/base/shared/xdg/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/xdg/default.nix -------------------------------------------------------------------------------- /modules/base/shared/zram/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/base/shared/zram/default.nix -------------------------------------------------------------------------------- /modules/home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/default.nix -------------------------------------------------------------------------------- /modules/home/jet/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/default.nix -------------------------------------------------------------------------------- /modules/home/jet/firefox/config/betterfox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/firefox/config/betterfox.js -------------------------------------------------------------------------------- /modules/home/jet/firefox/config/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/firefox/config/custom.js -------------------------------------------------------------------------------- /modules/home/jet/firefox/config/mountain.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/firefox/config/mountain.xpi -------------------------------------------------------------------------------- /modules/home/jet/firefox/config/zen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/firefox/config/zen.js -------------------------------------------------------------------------------- /modules/home/jet/firefox/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/firefox/default.nix -------------------------------------------------------------------------------- /modules/home/jet/fish/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/fish/default.nix -------------------------------------------------------------------------------- /modules/home/jet/foot/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/foot/default.nix -------------------------------------------------------------------------------- /modules/home/jet/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/hyprland/default.nix -------------------------------------------------------------------------------- /modules/home/jet/hyprlock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/hyprlock/default.nix -------------------------------------------------------------------------------- /modules/home/jet/mako/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/mako/default.nix -------------------------------------------------------------------------------- /modules/home/jet/niri/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/niri/default.nix -------------------------------------------------------------------------------- /modules/home/jet/tofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/tofi/default.nix -------------------------------------------------------------------------------- /modules/home/jet/vesktop/config/frappe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/vesktop/config/frappe.css -------------------------------------------------------------------------------- /modules/home/jet/vesktop/config/gruvbox-dark-hard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/vesktop/config/gruvbox-dark-hard.css -------------------------------------------------------------------------------- /modules/home/jet/vesktop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/vesktop/default.nix -------------------------------------------------------------------------------- /modules/home/jet/vicinae/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/vicinae/default.nix -------------------------------------------------------------------------------- /modules/home/jet/vscode/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/vscode/default.nix -------------------------------------------------------------------------------- /modules/home/jet/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/waybar/default.nix -------------------------------------------------------------------------------- /modules/home/jet/waybar/default.nix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/waybar/default.nix.txt -------------------------------------------------------------------------------- /modules/home/jet/waybar/scripts/pingServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/waybar/scripts/pingServer.sh -------------------------------------------------------------------------------- /modules/home/jet/yazi/config/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/yazi/config/theme.toml -------------------------------------------------------------------------------- /modules/home/jet/yazi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/jet/yazi/default.nix -------------------------------------------------------------------------------- /modules/home/juniper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/juniper/default.nix -------------------------------------------------------------------------------- /modules/home/juniper/fish/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/juniper/fish/default.nix -------------------------------------------------------------------------------- /modules/home/mica/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/mica/default.nix -------------------------------------------------------------------------------- /modules/home/mica/fish/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/mica/fish/default.nix -------------------------------------------------------------------------------- /modules/home/sage/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/default.nix -------------------------------------------------------------------------------- /modules/home/sage/firefox/config/betterfox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/firefox/config/betterfox.js -------------------------------------------------------------------------------- /modules/home/sage/firefox/config/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/firefox/config/custom.js -------------------------------------------------------------------------------- /modules/home/sage/firefox/config/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/firefox/config/userChrome.css -------------------------------------------------------------------------------- /modules/home/sage/firefox/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/firefox/default.nix -------------------------------------------------------------------------------- /modules/home/sage/fish/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/fish/default.nix -------------------------------------------------------------------------------- /modules/home/sage/foot/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/foot/default.nix -------------------------------------------------------------------------------- /modules/home/sage/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/hyprland/default.nix -------------------------------------------------------------------------------- /modules/home/sage/hyprlock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/hyprlock/default.nix -------------------------------------------------------------------------------- /modules/home/sage/mako/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/mako/default.nix -------------------------------------------------------------------------------- /modules/home/sage/mangohud/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/mangohud/default.nix -------------------------------------------------------------------------------- /modules/home/sage/niri/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/niri/default.nix -------------------------------------------------------------------------------- /modules/home/sage/tofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/tofi/default.nix -------------------------------------------------------------------------------- /modules/home/sage/vesktop/config/frappe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/vesktop/config/frappe.css -------------------------------------------------------------------------------- /modules/home/sage/vesktop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/vesktop/default.nix -------------------------------------------------------------------------------- /modules/home/sage/vicinae/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/vicinae/default.nix -------------------------------------------------------------------------------- /modules/home/sage/vscode/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/vscode/default.nix -------------------------------------------------------------------------------- /modules/home/sage/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/waybar/default.nix -------------------------------------------------------------------------------- /modules/home/sage/waybar/scripts/pingServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/sage/waybar/scripts/pingServer.sh -------------------------------------------------------------------------------- /modules/home/shared/alacritty/config/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/alacritty/config/default -------------------------------------------------------------------------------- /modules/home/shared/alacritty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/alacritty/default.nix -------------------------------------------------------------------------------- /modules/home/shared/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/default.nix -------------------------------------------------------------------------------- /modules/home/shared/direnv/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/direnv/default.nix -------------------------------------------------------------------------------- /modules/home/shared/dunst/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/dunst/default.nix -------------------------------------------------------------------------------- /modules/home/shared/emacs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/emacs/default.nix -------------------------------------------------------------------------------- /modules/home/shared/eza/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/eza/default.nix -------------------------------------------------------------------------------- /modules/home/shared/fastfetch/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/fastfetch/default.nix -------------------------------------------------------------------------------- /modules/home/shared/fonts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/fonts/default.nix -------------------------------------------------------------------------------- /modules/home/shared/git/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/git/default.nix -------------------------------------------------------------------------------- /modules/home/shared/gpg/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/gpg/default.nix -------------------------------------------------------------------------------- /modules/home/shared/hyprsunset/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/hyprsunset/default.nix -------------------------------------------------------------------------------- /modules/home/shared/i3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/i3/default.nix -------------------------------------------------------------------------------- /modules/home/shared/mpd/config/ncmpcpp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/mpd/config/ncmpcpp.conf -------------------------------------------------------------------------------- /modules/home/shared/mpd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/mpd/default.nix -------------------------------------------------------------------------------- /modules/home/shared/polybar/config/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/polybar/config/default -------------------------------------------------------------------------------- /modules/home/shared/polybar/config/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/polybar/config/launch.sh -------------------------------------------------------------------------------- /modules/home/shared/polybar/config/old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/polybar/config/old -------------------------------------------------------------------------------- /modules/home/shared/polybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/polybar/default.nix -------------------------------------------------------------------------------- /modules/home/shared/prismlauncher/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/prismlauncher/default.nix -------------------------------------------------------------------------------- /modules/home/shared/starship/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/starship/default.nix -------------------------------------------------------------------------------- /modules/home/shared/sway/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/sway/default.nix -------------------------------------------------------------------------------- /modules/home/shared/theme/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/theme/default.nix -------------------------------------------------------------------------------- /modules/home/shared/utilities/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/utilities/default.nix -------------------------------------------------------------------------------- /modules/home/shared/wofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/wofi/default.nix -------------------------------------------------------------------------------- /modules/home/shared/zed/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/zed/default.nix -------------------------------------------------------------------------------- /modules/home/shared/zoxide/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/home/shared/zoxide/default.nix -------------------------------------------------------------------------------- /modules/module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/modules/module.txt -------------------------------------------------------------------------------- /overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/overlays/default.nix -------------------------------------------------------------------------------- /packages/TX02/TX-02-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/TX02/TX-02-Regular.otf -------------------------------------------------------------------------------- /packages/TX02/TX-02-Retina.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/TX02/TX-02-Retina.otf -------------------------------------------------------------------------------- /packages/TX02/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/TX02/default.nix -------------------------------------------------------------------------------- /packages/arnis/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/arnis/default.nix -------------------------------------------------------------------------------- /packages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/default.nix -------------------------------------------------------------------------------- /packages/helium/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/helium/default.nix -------------------------------------------------------------------------------- /packages/pragmatapro/PragmataPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/pragmatapro/PragmataPro-Bold.ttf -------------------------------------------------------------------------------- /packages/pragmatapro/PragmataPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/pragmatapro/PragmataPro.ttf -------------------------------------------------------------------------------- /packages/pragmatapro/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/pragmatapro/default.nix -------------------------------------------------------------------------------- /packages/widevinecdm-aarch64/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/packages/widevinecdm-aarch64/default.nix -------------------------------------------------------------------------------- /secrets/access-tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/access-tokens.yaml -------------------------------------------------------------------------------- /secrets/containers/caddy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/containers/caddy.yaml -------------------------------------------------------------------------------- /secrets/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/default.yaml -------------------------------------------------------------------------------- /secrets/email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/email.yaml -------------------------------------------------------------------------------- /secrets/k3s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/k3s.yaml -------------------------------------------------------------------------------- /secrets/networks/eduroam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/networks/eduroam.yaml -------------------------------------------------------------------------------- /secrets/networks/trooli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/networks/trooli.yaml -------------------------------------------------------------------------------- /secrets/networks/wifinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/networks/wifinity.yaml -------------------------------------------------------------------------------- /secrets/ssh-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/secrets/ssh-keys.yaml -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qazer2687/dotfiles/HEAD/shell.nix --------------------------------------------------------------------------------