24 lines
522 B
Nix
24 lines
522 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./personal.nix
|
|
./desktop/plasma/default.nix
|
|
];
|
|
home.packages = with pkgs; [prusa-slicer];
|
|
programs.plasma = lib.mkIf config.programs.plasma.enable {
|
|
configFile.kcminputrc."Libinput/1739/52759/SYNA32AA:00 06CB:CE17 Touchpad".NaturalScroll = true;
|
|
};
|
|
wayland.windowManager.sway = lib.mkIf config.wayland.windowManager.sway.enable {
|
|
config.workspaceOutputAssign = [
|
|
{
|
|
output = "eDP-1";
|
|
workspace = "1";
|
|
}
|
|
];
|
|
};
|
|
}
|