nixos/system/Northstar.nix

32 lines
615 B
Nix
Raw Normal View History

2024-09-08 10:42:10 +01:00
{ pkgs, username, ... }:
2024-07-30 15:06:34 +01:00
{
imports = [ ./laptop.nix ];
2024-09-08 10:42:10 +01:00
home-manager.users.${username} = {
home.packages = [ pkgs.prusa-slicer ];
2024-09-12 07:12:49 +01:00
wayland.windowManager.sway.config = {
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
};
}