nixos/hosts/Ronin/home.nix

15 lines
459 B
Nix
Raw Normal View History

2024-03-13 17:04:37 +00:00
{pkgs, ...}: {
imports = [../Scorch/home.nix];
home.packages = [(pkgs.writeShellScriptBin "ukaea-vpn-connect" "sudo ${pkgs.openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")];
2024-04-15 08:02:57 +01:00
wayland.windowManager.sway.config.output = {
"eDP-1" = {
pos = "2560 720";
scale = "1.5";
};
};
wayland.windowManager.hyprland.settings = {
workspace = ["1, monitor:eDP-1, default:true"];
2024-04-11 09:25:02 +01:00
monitor = ["eDP-1,1920x1080,2560x720,1.50"];
};
}