# home.nix { config, pkgs, pkgs-unstable, inputs, ... }: { home.stateVersion = "25.05"; home.username = "someone"; home.homeDirectory = "/home/someone"; programs.home-manager.enable = true; imports = [ ../../homemanager/shared-conf.nix ]; # wayland.windowManager.hyprland = { # enable = true; # plugins = [ # inputs.hyprland-plugins.packages.${pkgs.system}.hyprexpo # ]; # settings = { # bind = [ # "SUPER SHIFT, code:65, hyprexpo:expo, toggle" # ]; # source = [ # "~/.config/hypr/general.conf" # ]; # debug = { # disable_logs = false; # }; # }; # extraConfig = '' # source=~/.config/hypr/hyprland/general.conf # bind = SUPER SHIFT, code:65, hyprexpo:expo, toggle''; #}; }