Evie Litherland-Smith
b102f9e209
Reduce complexity and in flake.nix and be more efficient in re-using things Removed some reduandant files in home/ and tidied up the structure somewhat Moved things from desktop, gui, etc... to top level Changed env to shell, indiv shell expressions import relevant others
26 lines
688 B
Nix
26 lines
688 B
Nix
{pkgs, ...}: let
|
|
username = "xenia";
|
|
homeDirectory = "/home/${username}";
|
|
in {
|
|
imports = [
|
|
../../home/shell/fish.nix
|
|
../../home/git/personal.nix
|
|
../../home/ssh/personal.nix
|
|
../../home/hyprland
|
|
];
|
|
home = {
|
|
inherit username homeDirectory;
|
|
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
|
|
'';
|
|
}
|