Merge branch 'main' of github.com:bloxx12/nichts

This commit is contained in:
Charlie Root 2024-04-27 23:46:59 +02:00
commit d30a5f86f7
3 changed files with 15 additions and 3 deletions

View file

@ -93,7 +93,7 @@ in {
"swww init & swww img ${gitPath}/${cfg.wallpaper}"
"keepassxc"
"nextcloud"
"element-desktop --ozone-platform=wayland --enable-features=UseOzonePlatform --enable-features=WaylandWindowDecorations --enable-features=WebRTCPipeWireCpaturer --disable-gpu"
# "element-desktop --ozone-platform=wayland --enable-features=UseOzonePlatform --enable-features=WaylandWindowDecorations --enable-features=WebRTCPipeWireCpaturer --disable-gpu"
];
bind = [

View file

@ -1,6 +1,6 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, inputs, ... }:
let
username = config.modules.other.system.username;
newer_egl-wayland = self: super: {
egl-wayland = super.xwayland.overrideAttrs (prev: {
# version = "23.2.6-HEAD";
@ -18,4 +18,12 @@ in
environment.systemPackages = with pkgs; [
egl-wayland
];
home-manager.users.${username} = {
home.packages = let
fenix = inputs.fenix.packages.${pkgs.system};
in with pkgs; [
teamspeak_client
];
};
}