Enable barrier and more stuff for easier WFH
This commit is contained in:
parent
6f2f156f56
commit
b60f27c6ee
@ -1,6 +1,11 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.dconf.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
barrier
|
||||
gnome3.dconf
|
||||
libreoffice
|
||||
paprefs
|
||||
];
|
||||
}
|
||||
|
@ -55,8 +55,16 @@
|
||||
termite
|
||||
vim
|
||||
which
|
||||
|
||||
xfce.thunar
|
||||
xfce.thunar-volman
|
||||
# mounting external devices in thunar
|
||||
gvfs
|
||||
];
|
||||
|
||||
# mounting external devices as user
|
||||
services.udisks2.enable = true;
|
||||
|
||||
# required for nextcloud
|
||||
services.gnome3.gnome-keyring.enable = true;
|
||||
|
||||
@ -74,7 +82,7 @@
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
# pinentryFlavor = "gnome3";
|
||||
pinentryFlavor = "curses";
|
||||
};
|
||||
|
||||
# List services that you want to enable:
|
||||
@ -83,7 +91,12 @@
|
||||
# services.openssh.enable = true;
|
||||
|
||||
# Open ports in the firewall.
|
||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||
networking.firewall.allowedTCPPorts = [
|
||||
# barrier
|
||||
24800 42829
|
||||
# pulseaudio over network
|
||||
# 16001 4713
|
||||
];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
# Or disable the firewall altogether.
|
||||
# networking.firewall.enable = false;
|
||||
@ -93,7 +106,13 @@
|
||||
|
||||
# Enable sound.
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = true;
|
||||
hardware.pulseaudio = {
|
||||
enable = true;
|
||||
# tcp = {
|
||||
# enable = true;
|
||||
# anonymousClients.allowAll = true;
|
||||
# };
|
||||
};
|
||||
|
||||
# set keyboard layout
|
||||
environment.sessionVariables = {
|
||||
|
Loading…
Reference in New Issue
Block a user