35 lines
906 B
Nix
35 lines
906 B
Nix
|
{
|
||
|
pkgs,
|
||
|
inputs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
inputs.hyprland.homeManagerModules.default
|
||
|
# ../../pkgs/eww-hyprland
|
||
|
../../home/work.nix
|
||
|
../../home/desktop/hyprland
|
||
|
../../home/desktop/waybar/main.nix
|
||
|
../../home/desktop/waybar/compact.nix
|
||
|
../../home/gui
|
||
|
];
|
||
|
home = {
|
||
|
username = "elitherl";
|
||
|
homeDirectory = "/home/elitherl";
|
||
|
stateVersion = "22.11";
|
||
|
};
|
||
|
programs.neovim.package = pkgs.neovim-nightly;
|
||
|
# programs.eww-hyprland = {
|
||
|
# enable = true;
|
||
|
# package = pkgs.eww-wayland;
|
||
|
# };
|
||
|
programs.waybar.settings = {
|
||
|
main."output" = "DP-5";
|
||
|
compact."output" = ["eDP-1" "DP-3"];
|
||
|
};
|
||
|
xdg.configFile."hypr/display.conf".text = ''
|
||
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,1920x1200@60,0x185,1
|
||
|
monitor=desc:Dell Inc. DELL U2417H 5K9YD872FY1L,1920x1080@60,1920x0,1,transform,1
|
||
|
monitor=eDP-1,1920x1080@60,640x1385,1.5
|
||
|
'';
|
||
|
}
|