pang13: misc

inky
Elnu 7 months ago
parent 4bd8222dc3
commit 1f7c9c06d8

@ -36,5 +36,4 @@
support32Bit = true;
};
services.pipewire.enable = lib.mkForce false;
}
}

@ -37,4 +37,5 @@
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.system76.enableAll = true;
hardware.bluetooth.enable = true;
}

@ -3,6 +3,7 @@
{
imports = [
(import ./apps.nix)
(import ./i3)
(import ../thinkpads/i3.nix)
(import ../thinkpads/polybar.nix)
];

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
xsession.windowManager.i3.config = {
workspaceOutputAssign = [
{
output = "eDP-1";
workspace = "1";
}
{
output = "HDMI-1";
workspace = "2";
}
];
};
}
Loading…
Cancel
Save