34 lines
463 B
Nix
34 lines
463 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home = {
|
|
file = {
|
|
"wallpapers" = {
|
|
source = ./wallpapers;
|
|
};
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
moonlight-qt
|
|
];
|
|
|
|
programs.kitty.font.size = 12;
|
|
|
|
services.picom = {
|
|
vSync = true;
|
|
};
|
|
|
|
services.easyeffects = {
|
|
enable = true;
|
|
};
|
|
|
|
wayland.windowManager.sway.extraConfig = ''
|
|
bindswitch lid:on output eDP-1 disable
|
|
bindswitch lid:off output eDP-1 enable
|
|
'';
|
|
}
|