nixos/system/Northstar.nix

35 lines
722 B
Nix

{ pkgs, username, ... }:
{
imports = [ ./laptop.nix ];
home-manager.users.${username} = {
home.packages = [ pkgs.prusa-slicer ];
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";
scale = 1.25;
position = "0,0";
}
];
};
}
];
};
};
hardware.amdgpu.initrd.enable = true;
}