29 lines
690 B
Nix
29 lines
690 B
Nix
|
{
|
||
|
pkgs,
|
||
|
inputs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
inputs.hyprland.homeManagerModules.default
|
||
|
./home/personal.nix
|
||
|
./home/desktop/hyprland
|
||
|
./home/desktop/waybar/main.nix
|
||
|
./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
|
||
|
'';
|
||
|
}
|