Version 0.1.0

This commit is contained in:
2025-11-13 14:15:48 +00:00
parent daa7360b56
commit 292b8e9372
45 changed files with 3728 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
{ config, pkgs, ... }:
{
imports = [
./01_monitors.nix
./02_autostart.nix
./03_look-and-feel.nix
./04_decoration.nix
./05_animation.nix
./06_layouts.nix
./07_input.nix
./08_keybinds.nix
./09_windows-and-workspaces.nix
./10_extras_ascii-boot.nix
./11_extras_quotes.nix
./12_hypr_shaders.nix
./13_waybar-watcher.nix
./14_refresh-eww.nix
./15_hyprpapr.nix
];
home.file.".config/hypr/hyprland.conf".text = ''
#
# °˖* ( )🍸 pewdiepie/archdaemon/dionysh shhheersh
# Hyprland config
# vers. 1.0-nix
#
# MONITORS
source=~/.config/hypr/01_monitors.conf
# AUTOSTART
source=~/.config/hypr/02_autostart.conf
# LOOK AND FEEL
source=~/.config/hypr/03_look-and-feel.conf
# DECORATION
source=~/.config/hypr/04_decoration.conf
# ANIMATIONS
source=~/.config/hypr/05_animation.conf
# LAYOUTS
source=~/.config/hypr/06_layouts.conf
# INPUT
source=~/.config/hypr/07_input.conf
# KEYBINDINGS
source=~/.config/hypr/08_keybindings.conf
# WINDOWS AND WORKSPACES
source=~/.config/hypr/09_windows-and-workspaces.conf
'';
}