backup nixos config, nvim: add gitlink-vim

add also a script to copy the nixos config files to the repo
This commit is contained in:
arnaucube
2023-07-11 23:52:19 +02:00
parent 2e2a6ba78a
commit 471bc31a87
4 changed files with 31 additions and 0 deletions

View File

@@ -97,6 +97,8 @@
chromium
xfce.ristretto
pavucontrol
sage
obs-studio
];
programs.zsh.enable = true;
@@ -136,4 +138,9 @@
# bluetooth related
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# obs virtual camera
boot.extraModulePackages = with config.boot.kernelPackages; [
v4l2loopback
];
}

View File

@@ -29,4 +29,16 @@
# add pulseaudio support to manage audio
hardware.pulseaudio.enable = true;
## NOTES:
# Susspend issue:
# https://github.com/linux-surface/linux-surface/wiki/Known-Issues-and-FAQ#suspend-aka-sleep-vs-lid-closingopening-events
# run:
# > sudo modprobe -r surface_gpe
# and:
# > sudo bash -c 'echo -e "\n# Blacklisting lid vs. suspend issue module\nblacklist surface_gpe" >> /etc/modprobe.d/blacklist.conf'
#
# Now folding the keyboard to the screen will not suspend and brick the
# session, but you will need to manually suspend the session if saving battery
# is desired.
}