2024-08-30 12:57:02 +01:00
|
|
|
{ pkgs, username, ... }:
|
2024-07-30 15:06:34 +01:00
|
|
|
{
|
2024-08-30 12:57:02 +01:00
|
|
|
imports = [ ./laptop.nix ];
|
|
|
|
home-manager.users.${username} = {
|
|
|
|
imports = [ ./home/work.nix ];
|
2024-09-11 15:19:43 +01:00
|
|
|
wayland.windowManager.sway.config = {
|
2024-09-18 11:34:19 +01:00
|
|
|
output = {
|
2024-09-20 07:41:20 +01:00
|
|
|
# Built-in
|
|
|
|
"eDP-1".scale = "1.25";
|
2024-09-18 11:34:19 +01:00
|
|
|
# Work
|
|
|
|
"Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
|
|
|
|
# Home
|
|
|
|
"Acer Technologies ED270R TJMEE0043W01".mode = "1920x1080@120Hz";
|
|
|
|
"Microstep MSI G27CQ4 E2 Unknown" = {
|
|
|
|
mode = "2560x1440@120Hz";
|
|
|
|
scale = "1.25";
|
|
|
|
};
|
|
|
|
};
|
2024-09-11 15:19:43 +01:00
|
|
|
workspaceOutputAssign = [
|
|
|
|
{
|
|
|
|
output = "eDP-1";
|
|
|
|
workspace = "1";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
services.kanshi = {
|
|
|
|
enable = true;
|
|
|
|
settings =
|
|
|
|
let
|
2024-09-17 14:20:24 +01:00
|
|
|
laptopScreen.criteria = "eDP-1";
|
2024-09-18 11:34:19 +01:00
|
|
|
workMonitor.criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
|
|
|
homeMonitor1.criteria = "Acer Technologies ED270R TJMEE0043W01";
|
|
|
|
homeMonitor2.criteria = "Microstep MSI G27CQ4 E2 Unknown";
|
2024-09-11 15:19:43 +01:00
|
|
|
in
|
|
|
|
[
|
|
|
|
{
|
|
|
|
profile = {
|
2024-09-12 09:09:13 +01:00
|
|
|
name = "default";
|
|
|
|
outputs = [
|
|
|
|
{
|
2024-09-17 14:20:24 +01:00
|
|
|
inherit (laptopScreen) criteria;
|
2024-09-12 09:09:13 +01:00
|
|
|
status = "enable";
|
|
|
|
position = "0,0";
|
|
|
|
}
|
|
|
|
];
|
2024-09-11 15:19:43 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
{
|
|
|
|
profile = {
|
2024-09-18 11:34:19 +01:00
|
|
|
name = "work";
|
2024-09-11 15:19:43 +01:00
|
|
|
outputs = [
|
2024-09-12 09:09:13 +01:00
|
|
|
{
|
2024-09-17 14:20:24 +01:00
|
|
|
inherit (laptopScreen) criteria;
|
2024-09-12 09:09:13 +01:00
|
|
|
status = "disable";
|
|
|
|
}
|
|
|
|
{
|
2024-09-18 11:34:19 +01:00
|
|
|
inherit (workMonitor) criteria;
|
2024-09-12 09:09:13 +01:00
|
|
|
status = "enable";
|
|
|
|
position = "0,0";
|
|
|
|
}
|
2024-09-11 15:19:43 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
2024-09-18 11:34:19 +01:00
|
|
|
{
|
|
|
|
profile = {
|
|
|
|
name = "home";
|
|
|
|
outputs = [
|
|
|
|
{
|
|
|
|
inherit (laptopScreen) criteria;
|
|
|
|
status = "disable";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
inherit (homeMonitor1) criteria;
|
|
|
|
status = "enable";
|
|
|
|
position = "0,140";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
inherit (homeMonitor2) criteria;
|
|
|
|
status = "enable";
|
|
|
|
position = "1920,0";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
2024-09-11 15:19:43 +01:00
|
|
|
];
|
|
|
|
};
|
2024-08-30 12:57:02 +01:00
|
|
|
};
|
2024-05-11 15:41:19 +01:00
|
|
|
boot.initrd = {
|
2024-07-30 15:06:34 +01:00
|
|
|
secrets = {
|
|
|
|
"/crypto_keyfile.bin" = null;
|
|
|
|
};
|
2024-05-11 15:41:19 +01:00
|
|
|
luks.devices."luks-761eeb11-3091-4142-9232-4fb33165eccd" = {
|
|
|
|
device = "/dev/disk/by-uuid/761eeb11-3091-4142-9232-4fb33165eccd";
|
|
|
|
keyFile = "/crypto_keyfile.bin";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
environment = {
|
|
|
|
etc."ppp/options".text = ''
|
|
|
|
ipcp-accept-remote
|
|
|
|
'';
|
2024-07-30 15:06:34 +01:00
|
|
|
systemPackages = with pkgs; [ openfortivpn ];
|
2024-06-19 13:55:37 +01:00
|
|
|
};
|
|
|
|
services = {
|
|
|
|
samba.enable = true;
|
|
|
|
hardware.bolt.enable = true;
|
2024-05-11 15:41:19 +01:00
|
|
|
};
|
|
|
|
}
|