Merge branch 'main' of github.com:bloxx12/nichts
This commit is contained in:
commit
d30a5f86f7
3 changed files with 15 additions and 3 deletions
|
@ -93,7 +93,7 @@ in {
|
||||||
"swww init & swww img ${gitPath}/${cfg.wallpaper}"
|
"swww init & swww img ${gitPath}/${cfg.wallpaper}"
|
||||||
"keepassxc"
|
"keepassxc"
|
||||||
"nextcloud"
|
"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 = [
|
bind = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
username = config.modules.other.system.username;
|
||||||
newer_egl-wayland = self: super: {
|
newer_egl-wayland = self: super: {
|
||||||
egl-wayland = super.xwayland.overrideAttrs (prev: {
|
egl-wayland = super.xwayland.overrideAttrs (prev: {
|
||||||
# version = "23.2.6-HEAD";
|
# version = "23.2.6-HEAD";
|
||||||
|
@ -18,4 +18,12 @@ in
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
egl-wayland
|
egl-wayland
|
||||||
];
|
];
|
||||||
|
home-manager.users.${username} = {
|
||||||
|
home.packages = let
|
||||||
|
fenix = inputs.fenix.packages.${pkgs.system};
|
||||||
|
|
||||||
|
in with pkgs; [
|
||||||
|
teamspeak_client
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
media_player = "mpv.desktop";
|
media_player = "mpv.desktop";
|
||||||
image_viewer = "imv.desktop";
|
image_viewer = "imv.desktop";
|
||||||
text_editor = "nvim.desktop";
|
text_editor = "nvim.desktop";
|
||||||
|
terminal = "alacritty.desktop";
|
||||||
in {
|
in {
|
||||||
|
|
||||||
/* environment.sessionVariables = {
|
/* environment.sessionVariables = {
|
||||||
|
@ -42,6 +43,9 @@ in {
|
||||||
xdg-desktop-portal-gtk
|
xdg-desktop-portal-gtk
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
environment.sessionVariables = {
|
||||||
|
TERMINAL = "${terminal}";
|
||||||
|
};
|
||||||
|
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
xdg.configFile."npm/npmrc".text = ''
|
xdg.configFile."npm/npmrc".text = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue