swtch to zsh

This commit is contained in:
Tim Schubert 2020-05-12 09:49:56 +02:00
parent c81070da92
commit e2359005d5
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
6 changed files with 108 additions and 20 deletions

View file

@ -2,8 +2,8 @@
{
imports = [
./vim
./fish.nix
./tmux.nix
./zsh.nix
(import ./termite.nix {
config = config;
pkgs = pkgs;
@ -14,6 +14,24 @@
./git.nix
./gtk.nix
./xdg.nix
./sway
];
systemd.user.services = {
auto-source-volume = {
Unit = {
Description = "Revert setting volume of microphone";
Documentation = [ "man(1)pacmd" ];
BindsTo = "pulseaudio.service";
};
Service = {
ExecStart = "/bin/sh %h/bin/auto-source-volume.sh";
Type = "simple";
};
Install = {
WantedBy = [ "default.target" ];
};
};
};
}