nixos/system/Northstar.nix

32 lines
603 B
Nix
Raw Normal View History

2024-09-20 07:30:06 +01:00
{ username, ... }:
2024-07-30 15:06:34 +01:00
{
imports = [ ./laptop.nix ];
2024-09-08 10:42:10 +01:00
home-manager.users.${username} = {
2024-09-12 07:12:49 +01:00
wayland.windowManager.sway.config = {
2024-09-20 07:41:20 +01:00
output."eDP-1".scale = "1.25";
2024-09-12 07:12:49 +01:00
workspaceOutputAssign = [
{
output = "eDP-1";
workspace = "1";
}
];
};
services.kanshi = {
enable = true;
settings = [
{
profile = {
name = "default";
outputs = [
{
criteria = "eDP-1";
position = "0,0";
}
];
};
}
];
};
2024-09-08 10:42:10 +01:00
};
}