mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03: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
|
# 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 = {
|
||||||
|
|
Loading…
Reference in a new issue