swtch to zsh
This commit is contained in:
parent
c81070da92
commit
e2359005d5
6 changed files with 108 additions and 20 deletions
22
common.nix
22
common.nix
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue