32 lines
603 B
Nix
32 lines
603 B
Nix
{ username, ... }:
|
|
{
|
|
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";
|
|
}
|
|
];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|