├── .gitignore ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── home-manager ├── home-packages.nix ├── home.nix └── modules │ ├── alacritty.nix │ ├── bat.nix │ ├── chromium.nix │ ├── default.nix │ ├── eza.nix │ ├── git.nix │ ├── hyprland │ ├── binds.nix │ ├── default.nix │ ├── hypridle.nix │ ├── hyprlock.nix │ ├── hyprpaper.nix │ └── main.nix │ ├── lazygit.nix │ ├── neovim.nix │ ├── obsidian.nix │ ├── qt.nix │ ├── ranger.nix │ ├── starship.nix │ ├── stylix.nix │ ├── swaync │ └── default.nix │ ├── tmux.nix │ ├── waybar │ ├── default.nix │ └── style.css │ ├── wofi │ ├── default.nix │ └── style.css │ ├── zathura.nix │ └── zsh.nix ├── hosts ├── 330-15ARR │ ├── configuration.nix │ ├── hardware-configuration.nix │ └── local-packages.nix └── slim3 │ ├── configuration.nix │ ├── hardware-configuration.nix │ └── local-packages.nix ├── nixos └── modules │ ├── audio.nix │ ├── bluetooth.nix │ ├── boot.nix │ ├── default.nix │ ├── env.nix │ ├── home-manager.nix │ ├── hyprland.nix │ ├── kernel.nix │ ├── mime.nix │ ├── net.nix │ ├── nh.nix │ ├── nix.nix │ ├── timezone.nix │ ├── user.nix │ └── zram.nix └── screenshots ├── screenshot1.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/flake.nix -------------------------------------------------------------------------------- /home-manager/home-packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/home-packages.nix -------------------------------------------------------------------------------- /home-manager/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/home.nix -------------------------------------------------------------------------------- /home-manager/modules/alacritty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/alacritty.nix -------------------------------------------------------------------------------- /home-manager/modules/bat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/bat.nix -------------------------------------------------------------------------------- /home-manager/modules/chromium.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/chromium.nix -------------------------------------------------------------------------------- /home-manager/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/default.nix -------------------------------------------------------------------------------- /home-manager/modules/eza.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/eza.nix -------------------------------------------------------------------------------- /home-manager/modules/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/git.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/binds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/hyprland/binds.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/hyprland/default.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/hypridle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/hyprland/hypridle.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/hyprlock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/hyprland/hyprlock.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/hyprpaper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/hyprland/hyprpaper.nix -------------------------------------------------------------------------------- /home-manager/modules/hyprland/main.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/hyprland/main.nix -------------------------------------------------------------------------------- /home-manager/modules/lazygit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/lazygit.nix -------------------------------------------------------------------------------- /home-manager/modules/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/neovim.nix -------------------------------------------------------------------------------- /home-manager/modules/obsidian.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/obsidian.nix -------------------------------------------------------------------------------- /home-manager/modules/qt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/qt.nix -------------------------------------------------------------------------------- /home-manager/modules/ranger.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/ranger.nix -------------------------------------------------------------------------------- /home-manager/modules/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/starship.nix -------------------------------------------------------------------------------- /home-manager/modules/stylix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/stylix.nix -------------------------------------------------------------------------------- /home-manager/modules/swaync/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/swaync/default.nix -------------------------------------------------------------------------------- /home-manager/modules/tmux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/tmux.nix -------------------------------------------------------------------------------- /home-manager/modules/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/waybar/default.nix -------------------------------------------------------------------------------- /home-manager/modules/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/waybar/style.css -------------------------------------------------------------------------------- /home-manager/modules/wofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/wofi/default.nix -------------------------------------------------------------------------------- /home-manager/modules/wofi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/wofi/style.css -------------------------------------------------------------------------------- /home-manager/modules/zathura.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/zathura.nix -------------------------------------------------------------------------------- /home-manager/modules/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/home-manager/modules/zsh.nix -------------------------------------------------------------------------------- /hosts/330-15ARR/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/hosts/330-15ARR/configuration.nix -------------------------------------------------------------------------------- /hosts/330-15ARR/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/hosts/330-15ARR/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/330-15ARR/local-packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/hosts/330-15ARR/local-packages.nix -------------------------------------------------------------------------------- /hosts/slim3/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/hosts/slim3/configuration.nix -------------------------------------------------------------------------------- /hosts/slim3/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/hosts/slim3/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/slim3/local-packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/hosts/slim3/local-packages.nix -------------------------------------------------------------------------------- /nixos/modules/audio.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/audio.nix -------------------------------------------------------------------------------- /nixos/modules/bluetooth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/bluetooth.nix -------------------------------------------------------------------------------- /nixos/modules/boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/boot.nix -------------------------------------------------------------------------------- /nixos/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/default.nix -------------------------------------------------------------------------------- /nixos/modules/env.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/env.nix -------------------------------------------------------------------------------- /nixos/modules/home-manager.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/home-manager.nix -------------------------------------------------------------------------------- /nixos/modules/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/hyprland.nix -------------------------------------------------------------------------------- /nixos/modules/kernel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/kernel.nix -------------------------------------------------------------------------------- /nixos/modules/mime.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/mime.nix -------------------------------------------------------------------------------- /nixos/modules/net.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/net.nix -------------------------------------------------------------------------------- /nixos/modules/nh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/nh.nix -------------------------------------------------------------------------------- /nixos/modules/nix.nix: -------------------------------------------------------------------------------- 1 | { 2 | nix.settings.experimental-features = [ "nix-command" "flakes" ]; 3 | } 4 | -------------------------------------------------------------------------------- /nixos/modules/timezone.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/timezone.nix -------------------------------------------------------------------------------- /nixos/modules/user.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/user.nix -------------------------------------------------------------------------------- /nixos/modules/zram.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/nixos/modules/zram.nix -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andrey0189/nixos-config-reborn/HEAD/screenshots/screenshot2.png --------------------------------------------------------------------------------