Remove left-over home.nix files

This commit is contained in:
Evie Litherland-Smith 2024-05-11 16:19:18 +01:00
parent 98e6e5f6b4
commit be17470475
6 changed files with 0 additions and 97 deletions

View file

@ -1 +0,0 @@
{}

View file

@ -1,7 +0,0 @@
{...}: {
wayland.windowManager.sway.config.output = {
"eDP-1" = {
scale = "1.25";
};
};
}

View file

@ -1,46 +0,0 @@
{
config,
lib,
pkgs,
...
}: {
home.packages = [(pkgs.writeShellScriptBin "ukaea-vpn-connect" "sudo ${pkgs.openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")];
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
accounts.email.accounts = {
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
wayland.windowManager.sway.config.output = {
"eDP-1".scale = "1.25";
"Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
};
xresources.properties."Xft.dpi" = toString (builtins.mul 96 1.5);
services.kanshi = {
enable = true;
systemdTarget = "sway-session.target";
profiles = {
undocked = {
outputs = [
{
criteria = "eDP-1";
status = "enable";
scale = 1.25;
}
];
};
docked = {
outputs = [
{
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
status = "enable";
scale = 1.5;
}
{
criteria = "eDP-1";
status = "disable";
}
];
};
};
};
}

View file

@ -1,3 +0,0 @@
host = vpn.ukaea.uk
port = 943
username = elitherl

View file

@ -1,18 +0,0 @@
{
config,
lib,
...
}: {
programs.git.userEmail = config.accounts.email.accounts.outlook.address;
accounts.email.accounts = {
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
wayland.windowManager.sway.config.output = {
"Dell Inc. DELL P3223QE CCG8YN3" = {
pos = "0 0";
scale = "1.5";
};
};
xresources.properties."Xft.dpi" = toString (builtins.mul 96 1.5);
}

View file

@ -1,22 +0,0 @@
{pkgs, ...}: {
wayland.windowManager.sway.config = {
startup = [
{command = "${pkgs.xorg.xrandr}/bin/xrandr --output DP-2 --primary";}
];
output = {
"Acer Technologies ED270R TJMEE0043W01" = {
mode = "1920x1080@165Hz";
pos = "1080 420";
adaptive_sync = "off";
};
"Ancor Communications Inc VS278 FALMQS032358" = {
pos = "0 0";
transform = "270";
};
};
};
programs.waybar.settings = {
main.output = ["DP-2"];
alt.output = ["HDMI-A-1"];
};
}