nixos/hosts/Ronin/home.nix

31 lines
799 B
Nix

{pkgs, ...}: let
username = "elitherl";
homeDirectory = "/home/${username}";
in {
imports = [
../../home/shell/fish.nix
../../home/git/work.nix
../../home/ssh/work.nix
../../home/tui
../../home/hyprland
../../home/firefox/work.nix
../../home/wezterm
];
home = {
inherit username homeDirectory;
stateVersion = "22.11";
packages = with pkgs; [
openfortivpn
nomachine-client
teams-for-linux
zoom-us
];
};
programs.neovim.package = pkgs.neovim-nightly;
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
'';
}