added wireguard

This commit is contained in:
Alexander Szczepanski
2021-09-23 13:03:39 +02:00
parent cb81ba382b
commit 405c38ef26
11 changed files with 57 additions and 22 deletions

View File

@ -6,12 +6,22 @@ in
{
imports = [ <home-manager/nixos> ];
# systemd.user.services.barrierc = {
# Unit = {
# Description = "Barrier Server daemon";
# After = [ "graphical-session-pre.target" ];
# PartOf = [ "graphical-session.target" ];
# };
# Install.WantedBy = [ "graphical-session.target" ];
# Service.ExecStart = "${unstable.pkgs.barrier}/bin/barrierc -c ~/.barrier";
# };
home-manager.users.alex = { pkgs, ... }: {
home = {
file = {
".bin/rofi-default-sink.sh" = {
executable = true;
source = ./.bin/rofi-default-sink.sh;
source = ./bin/rofi-default-sink.sh;
};
};
packages = with unstable.pkgs; [
@ -59,6 +69,7 @@ in
vulkan-tools
wine
winetricks
obs-studio
];
};
@ -218,11 +229,11 @@ in
# };
# };
keychain = {
enable = true;
enableXsessionIntegration = true;
enableZshIntegration = true;
};
# keychain = {
# enable = true;
# enableXsessionIntegration = true;
# enableZshIntegration = true;
# };
};
services = {
@ -295,10 +306,6 @@ in
};
};
barrier.client = {
enable = true;
};
nextcloud-client = {
enable = true;
startInBackground = true;