mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
refactor: flatten a few home-manager configs
This commit is contained in:
parent
fa222ed4cb
commit
03c03fe87c
1 changed files with 202 additions and 201 deletions
11
home.nix
11
home.nix
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue