Compare commits
5 commits
42321b2da3
...
f2ef0a4ce4
Author | SHA1 | Date | |
---|---|---|---|
f2ef0a4ce4 | |||
74dfa6ebcc | |||
c4708a6fbc | |||
e160aca31b | |||
b06ca2b828 |
4 changed files with 46 additions and 10 deletions
|
@ -20,6 +20,10 @@ in {
|
|||
homeDirectory = "/home/${username}";
|
||||
stateVersion = "24.05";
|
||||
|
||||
file = {
|
||||
`/home/${username}/.scripts/audio/get-sink-name.sh`.source = ./home/scripts/audio/get-sink-name.sh;
|
||||
};
|
||||
|
||||
packages = with pkgs; [
|
||||
alacritty
|
||||
cups
|
||||
|
@ -59,7 +63,6 @@ in {
|
|||
pm2
|
||||
plexamp
|
||||
polybar
|
||||
pulseaudio
|
||||
rofi
|
||||
rofi-emoji
|
||||
steam
|
||||
|
@ -71,6 +74,7 @@ in {
|
|||
wget
|
||||
xclip
|
||||
yarn
|
||||
yt-dlp
|
||||
zip
|
||||
zsh
|
||||
zsh-powerlevel10k
|
||||
|
|
12
config/home/scripts/audio/get-sink-name.sh
Normal file
12
config/home/scripts/audio/get-sink-name.sh
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
SINK=$(pactl get-default-sink)
|
||||
|
||||
if [ $SINK = "alsa_output.pci-0000_1f_00.3.analog-stereo" ]; then
|
||||
echo "Speakers"
|
||||
elif [ $SINK = "alsa_output.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.analog-stereo" ]; then
|
||||
echo "Headphones"
|
||||
else
|
||||
echo "-"
|
||||
fi
|
||||
|
|
@ -53,7 +53,3 @@ key_bindings:
|
|||
- { key: PageDown, mods: Shift, action: ScrollPageDown }
|
||||
- { key: Home, mods: Shift, action: ScrollToTop }
|
||||
- { key: End, mods: Shift, action: ScrollToBottom }
|
||||
|
||||
shell:
|
||||
program: /bin/zsh
|
||||
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
"flatpak"
|
||||
"wheel"
|
||||
];
|
||||
shell = pkgs.zsh
|
||||
};
|
||||
|
||||
programs.steam = {
|
||||
|
@ -73,6 +74,26 @@
|
|||
remotePlay.openFirewall = true;
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
programs.zsh.promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||
|
||||
shellAliases = {
|
||||
lss = "ls -lah";
|
||||
|
||||
gss = "git status -s";
|
||||
gaa = "git add -A";
|
||||
gcm = "git commit -m";
|
||||
gco = "git checkout";
|
||||
|
||||
yt-mp3 = "yt-mp3 -xi --audio-format mp3";
|
||||
yt-mp3-meta = "yt-mp3 -xi --audio-format mp3 --parse-metadata \"playlist_index:%(track_number)s\" --add-metadata";
|
||||
yt-mp3-meta-cookies = "yt-mp3 -xi --audio-format mp3 --parse-metadata \"playlist_index:%(track_number)s\" --add-metadata --cookies-from-browser firefox";
|
||||
};
|
||||
};
|
||||
|
||||
programs.neovim.defaultEditor = true;
|
||||
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
noto-fonts
|
||||
|
@ -93,6 +114,7 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
docker
|
||||
pulseaudio
|
||||
];
|
||||
|
||||
virtualisation.docker.enable = true;
|
||||
|
@ -103,5 +125,7 @@
|
|||
extraPortals = [pkgs.xdg-desktop-portal-gtk];
|
||||
};
|
||||
|
||||
hardware.pulseaudio.enable = true;
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue