Bohdan's terminal configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

hyprland

bpavuk ee615393 bde43ee6

+38 -5
+9
nixos/desktop/hyprland.nix
··· 1 + { pkgs, lib, config, ... }: 2 + 3 + { 4 + programs.hyprland.enable = true; 5 + 6 + environment.systemPackages = [ 7 + pkgs.kitty 8 + ]; 9 + }
+2 -1
nixos/home/life/default.nix
··· 2 2 3 3 { 4 4 imports = [ 5 + ./creativity.nix 5 6 ./gaming.nix 6 7 ./gnome.nix 7 - ./creativity.nix 8 + ./hyprland 8 9 ]; 9 10 10 11 home.packages = with pkgs; [
+24
nixos/home/life/hyprland/default.nix
··· 1 + { pkgs, lib, config, ... }: 2 + 3 + { 4 + imports = [ 5 + ]; 6 + 7 + home.pointerCursor = { 8 + gtk.enable = true; 9 + 10 + package = pkgs.adwaita-icon-theme; 11 + name = "Adwaita"; 12 + }; 13 + 14 + wayland.windowManager.hyprland = { 15 + enable = true; 16 + package = null; 17 + portalPackage = null; 18 + }; 19 + 20 + xdg.configFile."hypr/" = { 21 + source = ../../../../window_manager/.config/hypr; 22 + recursive = true; 23 + }; 24 + }
+1
nixos/hosts/bpavuk-nixos/default.nix
··· 10 10 ../common.nix 11 11 ../virtualization.nix 12 12 ../../desktop/gnome.nix 13 + ../../desktop/hyprland.nix 13 14 ./networking.nix 14 15 ]; 15 16
+1 -1
window_manager/.config/hypr/hyprland/apps.conf
··· 1 1 $terminal = kitty 2 2 $fileManager = dolphin 3 3 $menu = fuzzel 4 - $browser = flatpak run app.zen_browser.zen 4 + $browser = zen 5 5
+1 -3
window_manager/.config/hypr/hyprland/input.conf
··· 14 14 } 15 15 16 16 # https://wiki.hyprland.org/Configuring/Variables/#gestures 17 - gestures { 18 - workspace_swipe = true 19 - } 17 + gesture = 3, horizontal, workspace 20 18 21 19 # Example per-device config 22 20 # See https://wiki.hyprland.org/Configuring/Keywords/#per-device-input-configs for more