My Nix Configuration
2
fork

Configure Feed

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

[homeModules] move hyprland config to hyprland module

dish c88510c7 b31c9ab9

+11 -9
+1 -1
homeModules/all-modules.nix
··· 6 6 inputs.self.homeModules.scripts 7 7 inputs.self.homeModules.services 8 8 inputs.self.homeModules.theming 9 - inputs.self.homeModules.wayland 9 + inputs.self.homeModules.hyprland 10 10 inputs.self.homeModules.xdg 11 11 12 12 inputs.nix-index-database.homeModules.nix-index
+1 -1
homeModules/default.nix
··· 5 5 }: 6 6 { 7 7 flake.homeModules = { 8 - wayland = import ./wayland; 8 + hyprland = import ./hyprland; 9 9 xdg = import ./xdg; 10 10 programs = import ./programs; 11 11 services = import ./services;
+9
homeModules/hyprland/windowrules.nix
··· 1 + { 2 + windowrule = [ 3 + "match:title Celeste, immediate, content game" 4 + "match:title Melvor Idle, tile" 5 + # Borderlands 2 6 + "match:class steam_app_49520, immediate, content game, fullscreen, monitor DP-2" 7 + "match:initial_class steam_app_49520, immediate, content game, fullscreen, monitor DP-2" 8 + ]; 9 + }
homeModules/wayland/default.nix homeModules/hyprland/default.nix
homeModules/wayland/env.nix homeModules/hyprland/env.nix
homeModules/wayland/hypridle.nix homeModules/hyprland/hypridle.nix
homeModules/wayland/keybindings.nix homeModules/hyprland/keybindings.nix
homeModules/wayland/monitors.nix homeModules/hyprland/monitors.nix
homeModules/wayland/plugins.nix homeModules/hyprland/plugins.nix
homeModules/wayland/services.nix homeModules/hyprland/services.nix
homeModules/wayland/settings.nix homeModules/hyprland/settings.nix
homeModules/wayland/variables.nix homeModules/hyprland/variables.nix
-7
homeModules/wayland/windowrules.nix
··· 1 - { 2 - windowrule = [ 3 - "immediate, content game, title:Celeste" 4 - "tile, title:Melvor Idle" 5 - "immediate, content game, fullscreen, monitor DP-2, class:steam_app_49520, initialClass:steam_app_49520" 6 - ]; 7 - }