Add sway config for rainbwodash

This commit is contained in:
Artemis Tosini 2021-08-26 22:17:13 +00:00
parent df539b0566
commit 925a106692
Signed by: artemist
GPG key ID: ADFFE553DCBB831E
2 changed files with 25 additions and 21 deletions

View file

@ -1,21 +0,0 @@
{ pkgs, lib, ... }:
{
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = pkgs.targetPlatform.system == "x86_64-linux";
};
pulse.enable = true;
jack.enable = true;
};
hardware.pulseaudio.enable = lib.mkForce false;
environment.systemPackages = with pkgs; [
pulseaudioLight
qjackctl
carla
lsp-plugins
];
}

View file

@ -22,6 +22,31 @@
boot.supportedFilesystems = [ "nfs4" ]; boot.supportedFilesystems = [ "nfs4" ];
# Home
home-manager.users.artemis = {
wayland.windowManager.sway.config = {
output."eDP-1" = { mode = "3840x2400@59.994Hz"; scale = "2"; };
input."1386:18753:Wacom_HID_4941_Finger".map_to_output = "eDP-1";
input."1739:52710:DLL096D:01_06CB:CDE6_Touchpad" = { middle_emulation = "enabled"; click_method = "clickfinger"; };
};
xdg.configFile."rustybar/config.toml".text = ''
[[tile]]
type = "iwd"
interface = "wlan0"
[[tile]]
type = "load"
[[tile]]
type = "memory"
[[tile]]
type = "hostname"
[[tile]]
type = "battery"
[[tile]]
type = "time"
format = "%Y-%m-%dT%H-%S-%S"
'';
};
networking.domain = "manehattan.artem.ist"; networking.domain = "manehattan.artem.ist";
networking.hostName = "rainbowdash"; networking.hostName = "rainbowdash";
system.stateVersion = "20.03"; system.stateVersion = "20.03";