2025-05-19 14:13:37 +02:00

31 lines
689 B
Nix

# home.nix
{ config, pkgs, pkgs-unstable, inputs, ... }:
{
home.stateVersion = "25.05";
home.username = "someone";
home.homeDirectory = "/home/someone";
programs.home-manager.enable = true;
# 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'';
#};
}