├── .github └── workflows │ └── dev.yaml ├── .gitignore ├── README.md ├── dunst └── .config │ └── dunst │ └── dunstrc ├── easyeffects └── .config │ ├── easyeffects │ ├── input │ │ ├── fedora-magazine.json │ │ └── keeb-record.json │ └── output │ │ └── hs5.json │ └── systemd │ └── user │ └── easyeffects.service ├── git └── .gitconfig ├── gpg └── .gnupg │ └── gpg-agent.conf ├── gtk └── .config │ └── gtk-3.0 │ └── settings.ini ├── i3 └── .config │ └── i3 │ └── config ├── mutt ├── .config │ └── mutt │ │ ├── mailcap │ │ └── muttrc └── .mbsyncrc ├── nix ├── Makefile ├── README.md ├── common │ ├── default.nix │ ├── home.nix │ ├── nix.nix │ └── version.nix ├── darwin │ ├── default.nix │ ├── dock │ │ └── default.nix │ ├── keybindings │ │ ├── chrome.nix │ │ └── default.nix │ ├── mouse │ │ └── default.nix │ ├── nix.nix │ ├── services │ │ ├── default.nix │ │ ├── skhd.nix │ │ └── yabai.nix │ ├── system.nix │ └── user.nix ├── flake.lock ├── flake.nix ├── home │ ├── base │ │ ├── base │ │ │ ├── default.nix │ │ │ ├── fzf.nix │ │ │ ├── git.nix │ │ │ ├── gpg.nix │ │ │ ├── home.nix │ │ │ ├── nvim.nix │ │ │ ├── packages.nix │ │ │ ├── ssh.nix │ │ │ ├── tmux.nix │ │ │ └── zsh.nix │ │ └── gui │ │ │ ├── default.nix │ │ │ ├── fonts.nix │ │ │ └── packages.nix │ ├── darwin │ │ ├── default.nix │ │ ├── home.nix │ │ ├── modules │ │ │ ├── default.nix │ │ │ └── trampoline-apps │ │ │ │ ├── default.nix │ │ │ │ └── lib.sh │ │ └── packages.nix │ └── linux │ │ ├── base │ │ ├── default.nix │ │ ├── gpg-agent.nix │ │ ├── home.nix │ │ └── ssh-agent.nix │ │ └── gui │ │ ├── caffeine.nix │ │ ├── default.nix │ │ ├── dunst.nix │ │ ├── easyeffects.nix │ │ ├── gtk │ │ └── default.nix │ │ ├── i3 │ │ ├── default.nix │ │ ├── floating.nix │ │ ├── keybindings.nix │ │ ├── modes.nix │ │ ├── screen-locker.nix │ │ ├── startup.nix │ │ └── wallpaper.nix │ │ ├── packages.nix │ │ ├── picom.nix │ │ ├── polybar.nix │ │ ├── redshift.nix │ │ ├── rofi.nix │ │ ├── syncthing.nix │ │ ├── urxvt.nix │ │ ├── xinitrc.nix │ │ ├── xprofile.nix │ │ ├── xresources.nix │ │ └── zprofile.nix ├── nixos │ ├── audio.nix │ ├── autorandr.nix │ ├── bluetooth.nix │ ├── boot.nix │ ├── configuration.nix │ ├── dconf.nix │ ├── default.nix │ ├── docker.nix │ ├── sleep.nix │ ├── steam.nix │ ├── tailscale.nix │ └── virtualbox.nix ├── outputs │ ├── home-gui.nix │ ├── home-hosts │ │ └── ghost │ │ │ ├── default.nix │ │ │ └── disable-sleep.nix │ ├── home.nix │ └── hosts │ │ ├── darwin │ │ └── default.nix │ │ ├── ghost │ │ ├── default.nix │ │ ├── hardware-configuration.nix │ │ └── nvidia.nix │ │ └── toaster │ │ ├── default.nix │ │ └── hardware-configuration.nix ├── overlays │ ├── default.nix │ ├── git-branchless.nix │ ├── polybar.nix │ ├── sudo.nix │ └── tmux.nix └── vars │ ├── default.nix │ └── users │ ├── aeolyus.nix │ ├── default.nix │ └── rihu.nix ├── nvim └── .config │ └── nvim │ ├── after │ └── plugin │ │ ├── bufferline.lua │ │ ├── cmp.lua │ │ ├── easy-align.lua │ │ ├── lsp.lua │ │ ├── lualine.lua │ │ ├── nord.lua │ │ ├── null-ls.lua │ │ ├── nvim-tree.lua │ │ ├── telescope.lua │ │ └── treesitter.lua │ ├── init.lua │ └── lua │ └── core │ ├── init.lua │ ├── keymap.lua │ ├── options.lua │ └── packer.lua ├── picom └── .config │ └── picom.conf ├── polybar └── .config │ └── polybar │ └── config ├── ranger └── .config │ └── ranger │ ├── commands.py │ ├── commands_full.py │ ├── rc.conf │ ├── rifle.conf │ └── scope.sh ├── redshift └── .config │ ├── redshift │ └── redshift.conf │ └── systemd │ └── user │ └── geoclue-agent.service ├── rofi └── .config │ └── rofi │ └── config.rasi ├── spacebar └── .config │ └── spacebar │ └── spacebarrc ├── spells ├── backup ├── backup-luks ├── backup-luks-prune ├── backup-prune ├── colorpanes ├── colortest ├── colorview ├── fileshare ├── fix-zsh-history ├── i3blurlock ├── ide ├── kubectl-ssh ├── merge-repos ├── se ├── src2pdf └── tmpdir ├── ssh ├── .config │ └── systemd │ │ └── user │ │ └── ssh-agent.service └── .pam_environment ├── tmux └── .tmux.conf ├── vscode └── .config │ └── Code - OSS │ └── User │ ├── extensions.txt │ ├── install-extensions.sh │ └── keybindings.json ├── x ├── .Xresources └── .xinitrc ├── xmap └── .Xmodmap ├── zathura └── .config │ └── zathura │ └── zathurarc └── zsh ├── .config └── zsh │ └── .zsh_plugins.txt ├── .zprofile └── .zshrc /.github/workflows/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/.github/workflows/dev.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /dunst/.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/dunst/.config/dunst/dunstrc -------------------------------------------------------------------------------- /easyeffects/.config/easyeffects/input/fedora-magazine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/easyeffects/.config/easyeffects/input/fedora-magazine.json -------------------------------------------------------------------------------- /easyeffects/.config/easyeffects/input/keeb-record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/easyeffects/.config/easyeffects/input/keeb-record.json -------------------------------------------------------------------------------- /easyeffects/.config/easyeffects/output/hs5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/easyeffects/.config/easyeffects/output/hs5.json -------------------------------------------------------------------------------- /easyeffects/.config/systemd/user/easyeffects.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/easyeffects/.config/systemd/user/easyeffects.service -------------------------------------------------------------------------------- /git/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/git/.gitconfig -------------------------------------------------------------------------------- /gpg/.gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/gpg/.gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /gtk/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/gtk/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /i3/.config/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/i3/.config/i3/config -------------------------------------------------------------------------------- /mutt/.config/mutt/mailcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/mutt/.config/mutt/mailcap -------------------------------------------------------------------------------- /mutt/.config/mutt/muttrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/mutt/.config/mutt/muttrc -------------------------------------------------------------------------------- /mutt/.mbsyncrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/mutt/.mbsyncrc -------------------------------------------------------------------------------- /nix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/Makefile -------------------------------------------------------------------------------- /nix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/README.md -------------------------------------------------------------------------------- /nix/common/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/common/default.nix -------------------------------------------------------------------------------- /nix/common/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/common/home.nix -------------------------------------------------------------------------------- /nix/common/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/common/nix.nix -------------------------------------------------------------------------------- /nix/common/version.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/common/version.nix -------------------------------------------------------------------------------- /nix/darwin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/default.nix -------------------------------------------------------------------------------- /nix/darwin/dock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/dock/default.nix -------------------------------------------------------------------------------- /nix/darwin/keybindings/chrome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/keybindings/chrome.nix -------------------------------------------------------------------------------- /nix/darwin/keybindings/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/keybindings/default.nix -------------------------------------------------------------------------------- /nix/darwin/mouse/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/mouse/default.nix -------------------------------------------------------------------------------- /nix/darwin/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/nix.nix -------------------------------------------------------------------------------- /nix/darwin/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/services/default.nix -------------------------------------------------------------------------------- /nix/darwin/services/skhd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/services/skhd.nix -------------------------------------------------------------------------------- /nix/darwin/services/yabai.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/services/yabai.nix -------------------------------------------------------------------------------- /nix/darwin/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/system.nix -------------------------------------------------------------------------------- /nix/darwin/user.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/darwin/user.nix -------------------------------------------------------------------------------- /nix/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/flake.lock -------------------------------------------------------------------------------- /nix/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/flake.nix -------------------------------------------------------------------------------- /nix/home/base/base/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/default.nix -------------------------------------------------------------------------------- /nix/home/base/base/fzf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/fzf.nix -------------------------------------------------------------------------------- /nix/home/base/base/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/git.nix -------------------------------------------------------------------------------- /nix/home/base/base/gpg.nix: -------------------------------------------------------------------------------- 1 | { 2 | programs.gpg.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /nix/home/base/base/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/home.nix -------------------------------------------------------------------------------- /nix/home/base/base/nvim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/nvim.nix -------------------------------------------------------------------------------- /nix/home/base/base/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/packages.nix -------------------------------------------------------------------------------- /nix/home/base/base/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/ssh.nix -------------------------------------------------------------------------------- /nix/home/base/base/tmux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/tmux.nix -------------------------------------------------------------------------------- /nix/home/base/base/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/base/zsh.nix -------------------------------------------------------------------------------- /nix/home/base/gui/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/gui/default.nix -------------------------------------------------------------------------------- /nix/home/base/gui/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/gui/fonts.nix -------------------------------------------------------------------------------- /nix/home/base/gui/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/base/gui/packages.nix -------------------------------------------------------------------------------- /nix/home/darwin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/darwin/default.nix -------------------------------------------------------------------------------- /nix/home/darwin/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/darwin/home.nix -------------------------------------------------------------------------------- /nix/home/darwin/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/darwin/modules/default.nix -------------------------------------------------------------------------------- /nix/home/darwin/modules/trampoline-apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/darwin/modules/trampoline-apps/default.nix -------------------------------------------------------------------------------- /nix/home/darwin/modules/trampoline-apps/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/darwin/modules/trampoline-apps/lib.sh -------------------------------------------------------------------------------- /nix/home/darwin/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/darwin/packages.nix -------------------------------------------------------------------------------- /nix/home/linux/base/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/base/default.nix -------------------------------------------------------------------------------- /nix/home/linux/base/gpg-agent.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/base/gpg-agent.nix -------------------------------------------------------------------------------- /nix/home/linux/base/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/base/home.nix -------------------------------------------------------------------------------- /nix/home/linux/base/ssh-agent.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/base/ssh-agent.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/caffeine.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/caffeine.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/default.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/dunst.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/dunst.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/easyeffects.nix: -------------------------------------------------------------------------------- 1 | { 2 | services.easyeffects.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /nix/home/linux/gui/gtk/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/gtk/default.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/i3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/i3/default.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/i3/floating.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/i3/floating.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/i3/keybindings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/i3/keybindings.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/i3/modes.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/i3/modes.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/i3/screen-locker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/i3/screen-locker.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/i3/startup.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/i3/startup.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/i3/wallpaper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/i3/wallpaper.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/packages.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/picom.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/picom.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/polybar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/polybar.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/redshift.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/redshift.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/rofi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/rofi.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/syncthing.nix: -------------------------------------------------------------------------------- 1 | { 2 | services.syncthing.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /nix/home/linux/gui/urxvt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/urxvt.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/xinitrc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/xinitrc.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/xprofile.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/xprofile.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/xresources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/xresources.nix -------------------------------------------------------------------------------- /nix/home/linux/gui/zprofile.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/home/linux/gui/zprofile.nix -------------------------------------------------------------------------------- /nix/nixos/audio.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/audio.nix -------------------------------------------------------------------------------- /nix/nixos/autorandr.nix: -------------------------------------------------------------------------------- 1 | { 2 | services.autorandr.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /nix/nixos/bluetooth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/bluetooth.nix -------------------------------------------------------------------------------- /nix/nixos/boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/boot.nix -------------------------------------------------------------------------------- /nix/nixos/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/configuration.nix -------------------------------------------------------------------------------- /nix/nixos/dconf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/dconf.nix -------------------------------------------------------------------------------- /nix/nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/default.nix -------------------------------------------------------------------------------- /nix/nixos/docker.nix: -------------------------------------------------------------------------------- 1 | { 2 | virtualisation.docker.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /nix/nixos/sleep.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/sleep.nix -------------------------------------------------------------------------------- /nix/nixos/steam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/steam.nix -------------------------------------------------------------------------------- /nix/nixos/tailscale.nix: -------------------------------------------------------------------------------- 1 | { 2 | services.tailscale.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /nix/nixos/virtualbox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/nixos/virtualbox.nix -------------------------------------------------------------------------------- /nix/outputs/home-gui.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/home-gui.nix -------------------------------------------------------------------------------- /nix/outputs/home-hosts/ghost/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/home-hosts/ghost/default.nix -------------------------------------------------------------------------------- /nix/outputs/home-hosts/ghost/disable-sleep.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/home-hosts/ghost/disable-sleep.nix -------------------------------------------------------------------------------- /nix/outputs/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/home.nix -------------------------------------------------------------------------------- /nix/outputs/hosts/darwin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/hosts/darwin/default.nix -------------------------------------------------------------------------------- /nix/outputs/hosts/ghost/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/hosts/ghost/default.nix -------------------------------------------------------------------------------- /nix/outputs/hosts/ghost/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/hosts/ghost/hardware-configuration.nix -------------------------------------------------------------------------------- /nix/outputs/hosts/ghost/nvidia.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/hosts/ghost/nvidia.nix -------------------------------------------------------------------------------- /nix/outputs/hosts/toaster/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/hosts/toaster/default.nix -------------------------------------------------------------------------------- /nix/outputs/hosts/toaster/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/outputs/hosts/toaster/hardware-configuration.nix -------------------------------------------------------------------------------- /nix/overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/overlays/default.nix -------------------------------------------------------------------------------- /nix/overlays/git-branchless.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/overlays/git-branchless.nix -------------------------------------------------------------------------------- /nix/overlays/polybar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/overlays/polybar.nix -------------------------------------------------------------------------------- /nix/overlays/sudo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/overlays/sudo.nix -------------------------------------------------------------------------------- /nix/overlays/tmux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/overlays/tmux.nix -------------------------------------------------------------------------------- /nix/vars/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/vars/default.nix -------------------------------------------------------------------------------- /nix/vars/users/aeolyus.nix: -------------------------------------------------------------------------------- 1 | { 2 | username = "aeolyus"; 3 | } 4 | -------------------------------------------------------------------------------- /nix/vars/users/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nix/vars/users/default.nix -------------------------------------------------------------------------------- /nix/vars/users/rihu.nix: -------------------------------------------------------------------------------- 1 | { 2 | username = "rihu"; 3 | } 4 | -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/bufferline.lua: -------------------------------------------------------------------------------- 1 | require("bufferline").setup() 2 | -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/cmp.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/easy-align.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/easy-align.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/lsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/lsp.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/lualine.lua: -------------------------------------------------------------------------------- 1 | require('lualine').setup() 2 | -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/nord.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/nord.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/null-ls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/null-ls.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/nvim-tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/nvim-tree.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/telescope.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/after/plugin/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/after/plugin/treesitter.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/init.lua: -------------------------------------------------------------------------------- 1 | require("core") 2 | -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/core/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/lua/core/init.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/core/keymap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/lua/core/keymap.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/core/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/lua/core/options.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/core/packer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/nvim/.config/nvim/lua/core/packer.lua -------------------------------------------------------------------------------- /picom/.config/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/picom/.config/picom.conf -------------------------------------------------------------------------------- /polybar/.config/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/polybar/.config/polybar/config -------------------------------------------------------------------------------- /ranger/.config/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/ranger/.config/ranger/commands.py -------------------------------------------------------------------------------- /ranger/.config/ranger/commands_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/ranger/.config/ranger/commands_full.py -------------------------------------------------------------------------------- /ranger/.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/ranger/.config/ranger/rc.conf -------------------------------------------------------------------------------- /ranger/.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/ranger/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /ranger/.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/ranger/.config/ranger/scope.sh -------------------------------------------------------------------------------- /redshift/.config/redshift/redshift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/redshift/.config/redshift/redshift.conf -------------------------------------------------------------------------------- /redshift/.config/systemd/user/geoclue-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/redshift/.config/systemd/user/geoclue-agent.service -------------------------------------------------------------------------------- /rofi/.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/rofi/.config/rofi/config.rasi -------------------------------------------------------------------------------- /spacebar/.config/spacebar/spacebarrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spacebar/.config/spacebar/spacebarrc -------------------------------------------------------------------------------- /spells/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/backup -------------------------------------------------------------------------------- /spells/backup-luks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/backup-luks -------------------------------------------------------------------------------- /spells/backup-luks-prune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/backup-luks-prune -------------------------------------------------------------------------------- /spells/backup-prune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/backup-prune -------------------------------------------------------------------------------- /spells/colorpanes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/colorpanes -------------------------------------------------------------------------------- /spells/colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/colortest -------------------------------------------------------------------------------- /spells/colorview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/colorview -------------------------------------------------------------------------------- /spells/fileshare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/fileshare -------------------------------------------------------------------------------- /spells/fix-zsh-history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/fix-zsh-history -------------------------------------------------------------------------------- /spells/i3blurlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/i3blurlock -------------------------------------------------------------------------------- /spells/ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/ide -------------------------------------------------------------------------------- /spells/kubectl-ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/kubectl-ssh -------------------------------------------------------------------------------- /spells/merge-repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/merge-repos -------------------------------------------------------------------------------- /spells/se: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/se -------------------------------------------------------------------------------- /spells/src2pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/src2pdf -------------------------------------------------------------------------------- /spells/tmpdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/spells/tmpdir -------------------------------------------------------------------------------- /ssh/.config/systemd/user/ssh-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/ssh/.config/systemd/user/ssh-agent.service -------------------------------------------------------------------------------- /ssh/.pam_environment: -------------------------------------------------------------------------------- 1 | SSH_AUTH_SOCK DEFAULT="${XDG_RUNTIME_DIR}/ssh-agent.socket" 2 | -------------------------------------------------------------------------------- /tmux/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/tmux/.tmux.conf -------------------------------------------------------------------------------- /vscode/.config/Code - OSS/User/extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/vscode/.config/Code - OSS/User/extensions.txt -------------------------------------------------------------------------------- /vscode/.config/Code - OSS/User/install-extensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/vscode/.config/Code - OSS/User/install-extensions.sh -------------------------------------------------------------------------------- /vscode/.config/Code - OSS/User/keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/vscode/.config/Code - OSS/User/keybindings.json -------------------------------------------------------------------------------- /x/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/x/.Xresources -------------------------------------------------------------------------------- /x/.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/x/.xinitrc -------------------------------------------------------------------------------- /xmap/.Xmodmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/xmap/.Xmodmap -------------------------------------------------------------------------------- /zathura/.config/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/zathura/.config/zathura/zathurarc -------------------------------------------------------------------------------- /zsh/.config/zsh/.zsh_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/zsh/.config/zsh/.zsh_plugins.txt -------------------------------------------------------------------------------- /zsh/.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/zsh/.zprofile -------------------------------------------------------------------------------- /zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeolyus/dotfiles/HEAD/zsh/.zshrc --------------------------------------------------------------------------------