├── README.md ├── flake.lock ├── flake.nix ├── hosts └── shadow │ ├── configuration.nix │ ├── hardware-configuration.nix │ └── home.nix └── modules └── home-manager ├── development ├── default.nix ├── ides.nix └── tools.nix └── programs ├── alactritty └── default.nix ├── default.nix ├── hyprland ├── config.nix ├── default.nix ├── hyprland.nix └── hyprpaper.nix ├── misc ├── bat.nix ├── default.nix ├── discord.nix ├── git.nix ├── gtk.nix ├── icons ├── kitty.nix ├── lf.nix ├── mako.nix ├── mpv.nix ├── others.nix ├── spotify.nix ├── starship.nix └── zsh.nix ├── waybar ├── default.nix ├── settings.nix ├── style.nix └── waybar.nix └── wofi ├── config ├── config └── style.css ├── default.nix └── wofi.nix /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/flake.nix -------------------------------------------------------------------------------- /hosts/shadow/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/hosts/shadow/configuration.nix -------------------------------------------------------------------------------- /hosts/shadow/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/hosts/shadow/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/shadow/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/hosts/shadow/home.nix -------------------------------------------------------------------------------- /modules/home-manager/development/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/development/default.nix -------------------------------------------------------------------------------- /modules/home-manager/development/ides.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/development/ides.nix -------------------------------------------------------------------------------- /modules/home-manager/development/tools.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/development/tools.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/alactritty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/alactritty/default.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/default.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/hyprland/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/hyprland/config.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/hyprland/default.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/hyprland/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/hyprland/hyprland.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/hyprland/hyprpaper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/hyprland/hyprpaper.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/bat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/bat.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/default.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/discord.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/discord.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/git.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/gtk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/gtk.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/icons -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/kitty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/kitty.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/lf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/lf.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/mako.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/mako.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/mpv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/mpv.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/others.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/others.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/spotify.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/spotify.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/starship.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/misc/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/misc/zsh.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/waybar/default.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/waybar/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/waybar/settings.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/waybar/style.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/waybar/style.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/waybar/waybar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/waybar/waybar.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/wofi/config/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/wofi/config/config -------------------------------------------------------------------------------- /modules/home-manager/programs/wofi/config/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/wofi/config/style.css -------------------------------------------------------------------------------- /modules/home-manager/programs/wofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/wofi/default.nix -------------------------------------------------------------------------------- /modules/home-manager/programs/wofi/wofi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enchanted-coder/nix-config/HEAD/modules/home-manager/programs/wofi/wofi.nix --------------------------------------------------------------------------------