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