├── .github └── assets │ ├── logo │ └── nixos-logo.png │ ├── pallet │ ├── pallet-0.png │ └── pallet-1.png │ └── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── catppuccin │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── old │ │ ├── 1.old.png │ │ ├── 2.old.png │ │ └── 3.old.png │ └── hyprlock.png ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── hosts ├── desktop │ ├── default.nix │ └── hardware-configuration.nix ├── laptop │ ├── default.nix │ └── hardware-configuration.nix └── vm │ ├── default.nix │ └── hardware-configuration.nix ├── install.sh ├── modules ├── core │ ├── bootloader.nix │ ├── default.nix │ ├── flatpak.nix │ ├── hardware.nix │ ├── network.nix │ ├── nh.nix │ ├── nixpkgs.nix │ ├── pipewire.nix │ ├── program.nix │ ├── qmk.nix │ ├── security.nix │ ├── services.nix │ ├── steam.nix │ ├── system.nix │ ├── user.nix │ ├── virtualization.nix │ ├── wayland.nix │ └── xserver.nix └── home │ ├── aseprite │ ├── aseprite.nix │ └── themes │ │ └── crystal-clean.zip │ ├── audacious │ ├── audacious.nix │ ├── config │ └── eq.preset │ ├── bat.nix │ ├── browser.nix │ ├── btop.nix │ ├── cava.nix │ ├── default.desktop.nix │ ├── default.nix │ ├── discord.nix │ ├── fastfetch │ ├── config.jsonc │ └── fastfetch.nix │ ├── fzf.nix │ ├── gaming.nix │ ├── ghostty │ ├── ghostty.nix │ └── styles │ │ └── tabs.css │ ├── git.nix │ ├── gnome.nix │ ├── gtk.nix │ ├── hyprland │ ├── binds.nix │ ├── default.nix │ ├── exec-once.nix │ ├── hyprland.nix │ ├── hyprlock.nix │ ├── monitors.nix │ ├── settings.nix │ ├── variables.nix │ └── windowrules.nix │ ├── kitty.nix │ ├── lazygit.nix │ ├── micro.nix │ ├── nemo.nix │ ├── nix-search │ ├── config.json │ ├── nix-search.nix │ └── nix-search.sh │ ├── nvim.nix │ ├── obsidian.nix │ ├── p10k │ ├── .p10k.zsh │ └── p10k.nix │ ├── packages │ ├── cli.nix │ ├── default.nix │ ├── dev.nix │ ├── gui.nix │ └── nix.nix │ ├── retroarch.nix │ ├── rofi │ ├── config.rasi │ ├── powermenu-theme.rasi │ ├── rofi.nix │ └── theme.rasi │ ├── scripts │ ├── scripts.nix │ └── scripts │ │ ├── ascii.sh │ │ ├── compress.sh │ │ ├── extract.sh │ │ ├── init-wallpaper.sh │ │ ├── lofi.sh │ │ ├── maxfetch.sh │ │ ├── music.sh │ │ ├── nh-notify.sh │ │ ├── power-menu.sh │ │ ├── random-wallpaper.sh │ │ ├── record.sh │ │ ├── runbg.sh │ │ ├── screenshot.sh │ │ ├── show-keybinds.sh │ │ ├── toggle-blur.sh │ │ ├── toggle-float.sh │ │ ├── toggle-oppacity.sh │ │ ├── toggle-waybar.sh │ │ ├── vm-start.sh │ │ ├── wall-change.sh │ │ └── wallpaper-picker.sh │ ├── ssh.nix │ ├── superfile │ ├── config.toml │ └── superfile.nix │ ├── swaylock.nix │ ├── swaync │ ├── config.json │ ├── style.css │ └── swaync.nix │ ├── swayosd.nix │ ├── vicinae.nix │ ├── vscodium │ ├── default.nix │ ├── extensions.nix │ ├── keybinds.nix │ ├── settings.nix │ └── vscodium.nix │ ├── waybar │ ├── default.nix │ ├── settings.nix │ ├── style.nix │ └── waybar.nix │ ├── waypaper.nix │ ├── xdg-mimes.nix │ └── zsh │ ├── default.nix │ ├── zsh.nix │ ├── zsh_alias.nix │ └── zsh_keybinds.nix ├── pkgs ├── 2048 │ └── default.nix ├── default.nix └── maple-mono │ └── default.nix ├── treefmt.toml └── wallpapers ├── otherWallpaper ├── gruvbox │ ├── astronaut.jpg │ ├── bin.png │ ├── bush.jpg │ ├── cat_leaves.png │ ├── controllers.png │ ├── fern.jpg │ ├── forest_bridge.jpg │ ├── forest_mist.jpg │ ├── forest_pastel.png │ ├── forest_pine.jpg │ ├── forest_road.jpg │ ├── japanese_pedestrian_street.png │ ├── leaves_wall.png │ ├── minimal_c.png │ ├── rails.png │ ├── rocket.png │ ├── rubiks-cube.png │ ├── space.png │ ├── stairs.jpg │ ├── tiled.png │ ├── tux.png │ ├── zelda.png │ ├── zelda_botw.png │ └── zig.png └── nixos │ ├── nixos.png │ ├── nixos_dots.png │ └── nixos_wave.png └── wallpaper.png /.github/assets/logo/nixos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/logo/nixos-logo.png -------------------------------------------------------------------------------- /.github/assets/pallet/pallet-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/pallet/pallet-0.png -------------------------------------------------------------------------------- /.github/assets/pallet/pallet-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/pallet/pallet-1.png -------------------------------------------------------------------------------- /.github/assets/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/1.png -------------------------------------------------------------------------------- /.github/assets/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/2.png -------------------------------------------------------------------------------- /.github/assets/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/3.png -------------------------------------------------------------------------------- /.github/assets/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/4.png -------------------------------------------------------------------------------- /.github/assets/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/5.png -------------------------------------------------------------------------------- /.github/assets/screenshots/catppuccin/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/catppuccin/1.png -------------------------------------------------------------------------------- /.github/assets/screenshots/catppuccin/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/catppuccin/2.png -------------------------------------------------------------------------------- /.github/assets/screenshots/catppuccin/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/catppuccin/3.png -------------------------------------------------------------------------------- /.github/assets/screenshots/catppuccin/old/1.old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/catppuccin/old/1.old.png -------------------------------------------------------------------------------- /.github/assets/screenshots/catppuccin/old/2.old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/catppuccin/old/2.old.png -------------------------------------------------------------------------------- /.github/assets/screenshots/catppuccin/old/3.old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/catppuccin/old/3.old.png -------------------------------------------------------------------------------- /.github/assets/screenshots/hyprlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/.github/assets/screenshots/hyprlock.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/flake.nix -------------------------------------------------------------------------------- /hosts/desktop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/hosts/desktop/default.nix -------------------------------------------------------------------------------- /hosts/desktop/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/hosts/desktop/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/laptop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/hosts/laptop/default.nix -------------------------------------------------------------------------------- /hosts/laptop/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/hosts/laptop/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/vm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/hosts/vm/default.nix -------------------------------------------------------------------------------- /hosts/vm/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/hosts/vm/hardware-configuration.nix -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/install.sh -------------------------------------------------------------------------------- /modules/core/bootloader.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/bootloader.nix -------------------------------------------------------------------------------- /modules/core/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/default.nix -------------------------------------------------------------------------------- /modules/core/flatpak.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/flatpak.nix -------------------------------------------------------------------------------- /modules/core/hardware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/hardware.nix -------------------------------------------------------------------------------- /modules/core/network.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/network.nix -------------------------------------------------------------------------------- /modules/core/nh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/nh.nix -------------------------------------------------------------------------------- /modules/core/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/nixpkgs.nix -------------------------------------------------------------------------------- /modules/core/pipewire.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/pipewire.nix -------------------------------------------------------------------------------- /modules/core/program.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/program.nix -------------------------------------------------------------------------------- /modules/core/qmk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/qmk.nix -------------------------------------------------------------------------------- /modules/core/security.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/security.nix -------------------------------------------------------------------------------- /modules/core/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/services.nix -------------------------------------------------------------------------------- /modules/core/steam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/steam.nix -------------------------------------------------------------------------------- /modules/core/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/system.nix -------------------------------------------------------------------------------- /modules/core/user.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/user.nix -------------------------------------------------------------------------------- /modules/core/virtualization.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/virtualization.nix -------------------------------------------------------------------------------- /modules/core/wayland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/wayland.nix -------------------------------------------------------------------------------- /modules/core/xserver.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/core/xserver.nix -------------------------------------------------------------------------------- /modules/home/aseprite/aseprite.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/aseprite/aseprite.nix -------------------------------------------------------------------------------- /modules/home/aseprite/themes/crystal-clean.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/aseprite/themes/crystal-clean.zip -------------------------------------------------------------------------------- /modules/home/audacious/audacious.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/audacious/audacious.nix -------------------------------------------------------------------------------- /modules/home/audacious/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/audacious/config -------------------------------------------------------------------------------- /modules/home/audacious/eq.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/audacious/eq.preset -------------------------------------------------------------------------------- /modules/home/bat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/bat.nix -------------------------------------------------------------------------------- /modules/home/browser.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/browser.nix -------------------------------------------------------------------------------- /modules/home/btop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/btop.nix -------------------------------------------------------------------------------- /modules/home/cava.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/cava.nix -------------------------------------------------------------------------------- /modules/home/default.desktop.nix: -------------------------------------------------------------------------------- 1 | { ... }: 2 | { 3 | imports = [ ./default.nix ]; 4 | } 5 | -------------------------------------------------------------------------------- /modules/home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/default.nix -------------------------------------------------------------------------------- /modules/home/discord.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/discord.nix -------------------------------------------------------------------------------- /modules/home/fastfetch/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/fastfetch/config.jsonc -------------------------------------------------------------------------------- /modules/home/fastfetch/fastfetch.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/fastfetch/fastfetch.nix -------------------------------------------------------------------------------- /modules/home/fzf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/fzf.nix -------------------------------------------------------------------------------- /modules/home/gaming.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/gaming.nix -------------------------------------------------------------------------------- /modules/home/ghostty/ghostty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/ghostty/ghostty.nix -------------------------------------------------------------------------------- /modules/home/ghostty/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/ghostty/styles/tabs.css -------------------------------------------------------------------------------- /modules/home/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/git.nix -------------------------------------------------------------------------------- /modules/home/gnome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/gnome.nix -------------------------------------------------------------------------------- /modules/home/gtk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/gtk.nix -------------------------------------------------------------------------------- /modules/home/hyprland/binds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/binds.nix -------------------------------------------------------------------------------- /modules/home/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/default.nix -------------------------------------------------------------------------------- /modules/home/hyprland/exec-once.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/exec-once.nix -------------------------------------------------------------------------------- /modules/home/hyprland/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/hyprland.nix -------------------------------------------------------------------------------- /modules/home/hyprland/hyprlock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/hyprlock.nix -------------------------------------------------------------------------------- /modules/home/hyprland/monitors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/monitors.nix -------------------------------------------------------------------------------- /modules/home/hyprland/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/settings.nix -------------------------------------------------------------------------------- /modules/home/hyprland/variables.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/variables.nix -------------------------------------------------------------------------------- /modules/home/hyprland/windowrules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/hyprland/windowrules.nix -------------------------------------------------------------------------------- /modules/home/kitty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/kitty.nix -------------------------------------------------------------------------------- /modules/home/lazygit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/lazygit.nix -------------------------------------------------------------------------------- /modules/home/micro.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/micro.nix -------------------------------------------------------------------------------- /modules/home/nemo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/nemo.nix -------------------------------------------------------------------------------- /modules/home/nix-search/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/nix-search/config.json -------------------------------------------------------------------------------- /modules/home/nix-search/nix-search.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/nix-search/nix-search.nix -------------------------------------------------------------------------------- /modules/home/nix-search/nix-search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/nix-search/nix-search.sh -------------------------------------------------------------------------------- /modules/home/nvim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/nvim.nix -------------------------------------------------------------------------------- /modules/home/obsidian.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/obsidian.nix -------------------------------------------------------------------------------- /modules/home/p10k/.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/p10k/.p10k.zsh -------------------------------------------------------------------------------- /modules/home/p10k/p10k.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/p10k/p10k.nix -------------------------------------------------------------------------------- /modules/home/packages/cli.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/packages/cli.nix -------------------------------------------------------------------------------- /modules/home/packages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/packages/default.nix -------------------------------------------------------------------------------- /modules/home/packages/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/packages/dev.nix -------------------------------------------------------------------------------- /modules/home/packages/gui.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/packages/gui.nix -------------------------------------------------------------------------------- /modules/home/packages/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/packages/nix.nix -------------------------------------------------------------------------------- /modules/home/retroarch.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/retroarch.nix -------------------------------------------------------------------------------- /modules/home/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/rofi/config.rasi -------------------------------------------------------------------------------- /modules/home/rofi/powermenu-theme.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/rofi/powermenu-theme.rasi -------------------------------------------------------------------------------- /modules/home/rofi/rofi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/rofi/rofi.nix -------------------------------------------------------------------------------- /modules/home/rofi/theme.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/rofi/theme.rasi -------------------------------------------------------------------------------- /modules/home/scripts/scripts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts.nix -------------------------------------------------------------------------------- /modules/home/scripts/scripts/ascii.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/ascii.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/compress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/compress.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/extract.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/init-wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/init-wallpaper.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/lofi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/lofi.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/maxfetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/maxfetch.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/music.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/music.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/nh-notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/nh-notify.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/power-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/power-menu.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/random-wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/random-wallpaper.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/record.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/runbg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/runbg.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/screenshot.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/show-keybinds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/show-keybinds.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/toggle-blur.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/toggle-blur.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/toggle-float.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/toggle-float.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/toggle-oppacity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/toggle-oppacity.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/toggle-waybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/toggle-waybar.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/vm-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/vm-start.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/wall-change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/wall-change.sh -------------------------------------------------------------------------------- /modules/home/scripts/scripts/wallpaper-picker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/scripts/scripts/wallpaper-picker.sh -------------------------------------------------------------------------------- /modules/home/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/ssh.nix -------------------------------------------------------------------------------- /modules/home/superfile/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/superfile/config.toml -------------------------------------------------------------------------------- /modules/home/superfile/superfile.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/superfile/superfile.nix -------------------------------------------------------------------------------- /modules/home/swaylock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/swaylock.nix -------------------------------------------------------------------------------- /modules/home/swaync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/swaync/config.json -------------------------------------------------------------------------------- /modules/home/swaync/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/swaync/style.css -------------------------------------------------------------------------------- /modules/home/swaync/swaync.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/swaync/swaync.nix -------------------------------------------------------------------------------- /modules/home/swayosd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/swayosd.nix -------------------------------------------------------------------------------- /modules/home/vicinae.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/vicinae.nix -------------------------------------------------------------------------------- /modules/home/vscodium/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/vscodium/default.nix -------------------------------------------------------------------------------- /modules/home/vscodium/extensions.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/vscodium/extensions.nix -------------------------------------------------------------------------------- /modules/home/vscodium/keybinds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/vscodium/keybinds.nix -------------------------------------------------------------------------------- /modules/home/vscodium/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/vscodium/settings.nix -------------------------------------------------------------------------------- /modules/home/vscodium/vscodium.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/vscodium/vscodium.nix -------------------------------------------------------------------------------- /modules/home/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/waybar/default.nix -------------------------------------------------------------------------------- /modules/home/waybar/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/waybar/settings.nix -------------------------------------------------------------------------------- /modules/home/waybar/style.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/waybar/style.nix -------------------------------------------------------------------------------- /modules/home/waybar/waybar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/waybar/waybar.nix -------------------------------------------------------------------------------- /modules/home/waypaper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/waypaper.nix -------------------------------------------------------------------------------- /modules/home/xdg-mimes.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/xdg-mimes.nix -------------------------------------------------------------------------------- /modules/home/zsh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/zsh/default.nix -------------------------------------------------------------------------------- /modules/home/zsh/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/zsh/zsh.nix -------------------------------------------------------------------------------- /modules/home/zsh/zsh_alias.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/zsh/zsh_alias.nix -------------------------------------------------------------------------------- /modules/home/zsh/zsh_keybinds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/modules/home/zsh/zsh_keybinds.nix -------------------------------------------------------------------------------- /pkgs/2048/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/pkgs/2048/default.nix -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/pkgs/default.nix -------------------------------------------------------------------------------- /pkgs/maple-mono/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/pkgs/maple-mono/default.nix -------------------------------------------------------------------------------- /treefmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/treefmt.toml -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/astronaut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/astronaut.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/bin.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/bush.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/bush.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/cat_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/cat_leaves.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/controllers.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/fern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/fern.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/forest_bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/forest_bridge.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/forest_mist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/forest_mist.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/forest_pastel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/forest_pastel.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/forest_pine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/forest_pine.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/forest_road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/forest_road.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/japanese_pedestrian_street.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/japanese_pedestrian_street.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/leaves_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/leaves_wall.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/minimal_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/minimal_c.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/rails.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/rocket.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/rubiks-cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/rubiks-cube.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/space.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/stairs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/stairs.jpg -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/tiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/tiled.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/tux.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/zelda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/zelda.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/zelda_botw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/zelda_botw.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/gruvbox/zig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/gruvbox/zig.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/nixos/nixos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/nixos/nixos.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/nixos/nixos_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/nixos/nixos_dots.png -------------------------------------------------------------------------------- /wallpapers/otherWallpaper/nixos/nixos_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/otherWallpaper/nixos/nixos_wave.png -------------------------------------------------------------------------------- /wallpapers/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Frost-Phoenix/nixos-config/HEAD/wallpapers/wallpaper.png --------------------------------------------------------------------------------