nixos/hosts/Vanguard/home.nix

29 lines
697 B
Nix
Raw Normal View History

{
pkgs,
inputs,
...
}: {
imports = [
inputs.hyprland.homeManagerModules.default
2023-07-15 21:06:51 +01:00
../../home/personal.nix
../../home/desktop/hyprland
../../home/desktop/waybar
../../home/gui
];
home = {
username = "xenia";
homeDirectory = "/home/xenia";
stateVersion = "22.11";
};
programs.neovim.package = pkgs.neovim-nightly;
xdg.configFile."hypr/display.conf".text = ''
monitor=DP-1,highrr,auto,1
monitor=DP-2,highrr,auto,1
monitor=HDMI-1,highres,auto,2
monitor=HDMI-2,highres,auto,2
'';
xdg.configFile."hypr/autostart.conf".text = ''
exec-once=gamescope -w 1920 -h 1080 -W 3840 -H 2160 -U -f --hdr-enabled -e -- steam -gamepadui
'';
}