refactor: flatten a few home-manager configs

This commit is contained in:
Youwen Wu 2024-07-30 04:38:35 -07:00
parent fa222ed4cb
commit 03c03fe87c
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -42,7 +42,6 @@
# with more details log output # with more details log output
nix-output-monitor nix-output-monitor
# system tools # system tools
pciutils # lspci pciutils # lspci
usbutils # lsusb usbutils # lsusb
@ -91,17 +90,18 @@
}; };
}; };
services.easyeffects = { enable = true; }; services.easyeffects.enable = true;
programs.fzf = { programs.fzf = {
enable = true; enable = true;
catppuccin.enable = true; catppuccin.enable = true;
}; };
programs.wlogout = { enable = true; }; programs.wlogout.enable = true;
wayland.windowManager.hyprland.enable = true; wayland.windowManager.hyprland = {
wayland.windowManager.hyprland.settings = { enable = true;
settings = {
exec-once = [ "waybar" "waypaper --restore" ]; exec-once = [ "waybar" "waypaper --restore" ];
"$mod" = "SUPER"; "$mod" = "SUPER";
"$Left" = "Y"; "$Left" = "Y";
@ -304,6 +304,7 @@
}; };
}; };
}; };
};
# basic configuration of git, please change to your own # basic configuration of git, please change to your own
programs.git = { programs.git = {