2023-07-16 17:35:36 +01:00
|
|
|
{pkgs, ...}: let
|
|
|
|
username = "xenia";
|
|
|
|
homeDirectory = "/home/${username}";
|
|
|
|
in {
|
2023-07-13 12:41:00 +01:00
|
|
|
imports = [
|
2023-07-16 17:35:36 +01:00
|
|
|
../../home/shell/fish.nix
|
|
|
|
../../home/git/personal.nix
|
|
|
|
../../home/ssh/personal.nix
|
2023-07-16 17:48:23 +01:00
|
|
|
../../home/tui
|
2023-07-16 17:35:36 +01:00
|
|
|
../../home/hyprland
|
2023-07-13 12:41:00 +01:00
|
|
|
];
|
|
|
|
home = {
|
2023-07-16 17:35:36 +01:00
|
|
|
inherit username homeDirectory;
|
2023-07-13 12:41:00 +01:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
}
|