add some new packages for gui

This commit is contained in:
Gabriel Ebner 2021-02-19 11:18:43 +01:00
parent aa09035b08
commit 4773219133
2 changed files with 10 additions and 3 deletions

@ -54,12 +54,15 @@
]; ];
}; };
environment.systemPackages = [ environment.systemPackages = with pkgs; [
(pkgs.writeScriptBin "gsd-xsettings" (writeScriptBin "gsd-xsettings"
'' ''
#!/bin/sh #!/bin/sh
exec ${pkgs.gnome3.gnome-settings-daemon}/libexec/gsd-xsettings "$@" exec ${gnome3.gnome-settings-daemon}/libexec/gsd-xsettings "$@"
'') '')
libinput
libnotify
]; ];
# prevent satanic torture # prevent satanic torture

4
i3.nix

@ -25,6 +25,9 @@
pasystray pasystray
dconf-editor dconf-editor
unclutter-xfixes unclutter-xfixes
dunst
xorg.xev
# gnome3 core packages # gnome3 core packages
desktop_file_utils shared_mime_info desktop_file_utils shared_mime_info
@ -74,5 +77,6 @@
services.dbus.socketActivated = true; services.dbus.socketActivated = true;
services.dbus.packages = with pkgs; [ dunst ]; services.dbus.packages = with pkgs; [ dunst ];
systemd.packages = [ pkgs.dunst ];
} }