pang13: misc
This commit is contained in:
parent
4bd8222dc3
commit
1f7c9c06d8
4 changed files with 19 additions and 2 deletions
|
@ -36,5 +36,4 @@
|
||||||
support32Bit = true;
|
support32Bit = true;
|
||||||
};
|
};
|
||||||
services.pipewire.enable = lib.mkForce false;
|
services.pipewire.enable = lib.mkForce false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,4 +37,5 @@
|
||||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
||||||
hardware.system76.enableAll = true;
|
hardware.system76.enableAll = true;
|
||||||
|
hardware.bluetooth.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
(import ./apps.nix)
|
(import ./apps.nix)
|
||||||
|
(import ./i3)
|
||||||
(import ../thinkpads/i3.nix)
|
(import ../thinkpads/i3.nix)
|
||||||
(import ../thinkpads/polybar.nix)
|
(import ../thinkpads/polybar.nix)
|
||||||
];
|
];
|
||||||
|
|
16
hosts/pang13/i3/default.nix
Normal file
16
hosts/pang13/i3/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
xsession.windowManager.i3.config = {
|
||||||
|
workspaceOutputAssign = [
|
||||||
|
{
|
||||||
|
output = "eDP-1";
|
||||||
|
workspace = "1";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
output = "HDMI-1";
|
||||||
|
workspace = "2";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue