Compare commits
No commits in common. "e8065469c372e72804a310897b6095a2f883eacd" and "c03f88dbc366bd62aac0386d266c884223aabe9a" have entirely different histories.
e8065469c3
...
c03f88dbc3
|
@ -1,4 +1,31 @@
|
||||||
{ ... }:
|
{ username, ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./laptop.nix ];
|
imports = [ ./laptop.nix ];
|
||||||
|
home-manager.users.${username} = {
|
||||||
|
wayland.windowManager.sway.config = {
|
||||||
|
output."eDP-1".scale = "1.25";
|
||||||
|
workspaceOutputAssign = [
|
||||||
|
{
|
||||||
|
output = "eDP-1";
|
||||||
|
workspace = "1";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
services.kanshi = {
|
||||||
|
enable = true;
|
||||||
|
settings = [
|
||||||
|
{
|
||||||
|
profile = {
|
||||||
|
name = "default";
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = "eDP-1";
|
||||||
|
position = "0,0";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,87 @@
|
||||||
imports = [ ./laptop.nix ];
|
imports = [ ./laptop.nix ];
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
imports = [ ./home/work.nix ];
|
imports = [ ./home/work.nix ];
|
||||||
|
wayland.windowManager.sway.config = {
|
||||||
|
output = {
|
||||||
|
# Built-in
|
||||||
|
"eDP-1".scale = "1.25";
|
||||||
|
# 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
workspaceOutputAssign = [
|
||||||
|
{
|
||||||
|
output = "eDP-1";
|
||||||
|
workspace = "1";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
services.kanshi = {
|
||||||
|
enable = true;
|
||||||
|
settings =
|
||||||
|
let
|
||||||
|
laptopScreen.criteria = "eDP-1";
|
||||||
|
workMonitor.criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
||||||
|
homeMonitor1.criteria = "Acer Technologies ED270R TJMEE0043W01";
|
||||||
|
homeMonitor2.criteria = "Microstep MSI G27CQ4 E2 Unknown";
|
||||||
|
in
|
||||||
|
[
|
||||||
|
{
|
||||||
|
profile = {
|
||||||
|
name = "default";
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
inherit (laptopScreen) criteria;
|
||||||
|
status = "enable";
|
||||||
|
position = "0,0";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
profile = {
|
||||||
|
name = "work";
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
inherit (laptopScreen) criteria;
|
||||||
|
status = "disable";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
inherit (workMonitor) criteria;
|
||||||
|
status = "enable";
|
||||||
|
position = "0,0";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
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";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
boot.initrd = {
|
boot.initrd = {
|
||||||
secrets = {
|
secrets = {
|
||||||
|
|
|
@ -3,6 +3,15 @@
|
||||||
imports = [ ./desktop.nix ];
|
imports = [ ./desktop.nix ];
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
imports = [ ./home/work.nix ];
|
imports = [ ./home/work.nix ];
|
||||||
|
wayland.windowManager.sway.config = {
|
||||||
|
output."Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
|
||||||
|
workspaceOutputAssign = [
|
||||||
|
{
|
||||||
|
output = "DP-1";
|
||||||
|
workspace = "1";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
boot = {
|
boot = {
|
||||||
loader.efi.efiSysMountPoint = "/boot/efi";
|
loader.efi.efiSysMountPoint = "/boot/efi";
|
||||||
|
|
|
@ -159,6 +159,7 @@
|
||||||
"applications:calc.desktop"
|
"applications:calc.desktop"
|
||||||
"applications:impress.desktop"
|
"applications:impress.desktop"
|
||||||
"applications:org.kde.elisa.desktop"
|
"applications:org.kde.elisa.desktop"
|
||||||
|
"applications:com.obsproject.Studio.desktop"
|
||||||
"applications:Alacritty.desktop"
|
"applications:Alacritty.desktop"
|
||||||
"applications:systemsettings.desktop"
|
"applications:systemsettings.desktop"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue