From 1f7c9c06d8f4cac630f90209321262b642c02525 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Mon, 2 Oct 2023 14:00:50 -0700 Subject: [PATCH] pang13: misc --- hosts/pang13/default.nix | 3 +-- hosts/pang13/hardware-configuration.nix | 1 + hosts/pang13/home.nix | 1 + hosts/pang13/i3/default.nix | 16 ++++++++++++++++ 4 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 hosts/pang13/i3/default.nix diff --git a/hosts/pang13/default.nix b/hosts/pang13/default.nix index b6dfe4b..13d23ff 100644 --- a/hosts/pang13/default.nix +++ b/hosts/pang13/default.nix @@ -36,5 +36,4 @@ support32Bit = true; }; services.pipewire.enable = lib.mkForce false; -} - +} \ No newline at end of file diff --git a/hosts/pang13/hardware-configuration.nix b/hosts/pang13/hardware-configuration.nix index 1683eb3..3c536a9 100644 --- a/hosts/pang13/hardware-configuration.nix +++ b/hosts/pang13/hardware-configuration.nix @@ -37,4 +37,5 @@ hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.system76.enableAll = true; + hardware.bluetooth.enable = true; } diff --git a/hosts/pang13/home.nix b/hosts/pang13/home.nix index b3d07c9..bfcf6a0 100644 --- a/hosts/pang13/home.nix +++ b/hosts/pang13/home.nix @@ -3,6 +3,7 @@ { imports = [ (import ./apps.nix) + (import ./i3) (import ../thinkpads/i3.nix) (import ../thinkpads/polybar.nix) ]; diff --git a/hosts/pang13/i3/default.nix b/hosts/pang13/i3/default.nix new file mode 100644 index 0000000..d828977 --- /dev/null +++ b/hosts/pang13/i3/default.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: + +{ + xsession.windowManager.i3.config = { + workspaceOutputAssign = [ + { + output = "eDP-1"; + workspace = "1"; + } + { + output = "HDMI-1"; + workspace = "2"; + } + ]; + }; +} \ No newline at end of file