From 4e3c8eff1407291ce64254d3eeed8de5f9677a0b Mon Sep 17 00:00:00 2001 From: adikro Date: Fri, 14 Nov 2025 18:29:31 +0100 Subject: changed nixvim config a bit and added some fonts --- home/home.nix | 88 ++++++++++++++++++----------------------------------------- 1 file changed, 26 insertions(+), 62 deletions(-) (limited to 'home/home.nix') diff --git a/home/home.nix b/home/home.nix index e56d1f3..39f4567 100644 --- a/home/home.nix +++ b/home/home.nix @@ -2,19 +2,22 @@ { imports = [ - ./wayland/hyprland/binds.nix + # Window Managers + ./wayland/hyprland/hyprland.nix + ./wayland/niri/niri.nix + # Wayland specific programs ./wayland/waybar.nix + # Editors + ./editors/nixvim.nix + ./editors/helix.nix + # Programs ./terminals/foot.nix ./shells/fish.nix ./shells/starship.nix ./programs/spicetify.nix -# ./editors/nvf.nix - ./editors/nixvim.nix - ./editors/helix.nix - ./wayland/xdg.nix - ./wayland/eww.nix ./programs/nixcord.nix -# ./stylix.nix + # Other + ./xdg.nix ]; home.username = "adam"; @@ -55,66 +58,27 @@ programs.btop.enable = true; -programs.git = { - enable = true; - settings = { - user.name = "adikro"; - user.email = "adikro@disroot.org"; - init.defaultBranch = "main"; - }; -}; - -gtk = { - enable = true; - theme = { - name = "Adwaita-dark"; - package = pkgs.gnome-themes-extra; - }; -}; - -qt = { - enable = true; - style.name = "Breeze-Dark"; -}; - -wayland.windowManager.hyprland = { - enable = true; - settings = { - - general = { - gaps_in = 6; - gaps_out = 16; - border_size = 2; - }; - - decoration = { - rounding = 12; + programs.git = { + enable = true; + settings = { + user.name = "adikro"; + user.email = "adikro@disroot.org"; + init.defaultBranch = "main"; + }; }; - "$mod" = "ALT"; - monitor = [ - "DP-1,2560x1440@240,0x0,1,vrr,0" - ]; - workspace = [ - "1,monitor:DP-1,default:true" - "2,monitor:DP-1" - "3,monitor:DP-1" - "4,monitor:DP-1" - "5,monitor:DP-1" - ]; - - input = { - accel_profile = "flat"; - sensitivity = -0.6; - repeat_rate = 45; - repeat_delay = 750; + gtk = { + enable = true; + theme = { + name = "Adwaita-dark"; + package = pkgs.gnome-themes-extra; }; + }; - animations = { - enabled = false; - }; + qt = { + enable = true; + style.name = "Breeze-Dark"; }; -}; programs.home-manager.enable = true; } -- cgit v1.3