Compare commits
5 Commits
fa61617816
...
5b00400cc1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b00400cc1 | ||
|
|
9c98f7490f | ||
|
|
f6a6fb2afe | ||
|
|
fccac91c05 | ||
|
|
8f31717cb5 |
1
home.nix
1
home.nix
@@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./other/fonts.nix
|
./other/fonts.nix
|
||||||
|
./programs/obs-studio.nix
|
||||||
./programs/bitwarden.nix
|
./programs/bitwarden.nix
|
||||||
./programs/kitty.nix
|
./programs/kitty.nix
|
||||||
./programs/zsh.nix
|
./programs/zsh.nix
|
||||||
|
|||||||
5
programs/obs-studio.nix
Normal file
5
programs/obs-studio.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.obs-studio.enable = true;
|
||||||
|
}
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
theme = "agnoster";
|
theme = "agnoster";
|
||||||
};
|
};
|
||||||
|
|
||||||
initContent = ''
|
initExtra = ''
|
||||||
# Use kitty's ssh helper if running inside kitty
|
# Use kitty's ssh helper if running inside kitty
|
||||||
[ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
|
[ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
|
||||||
'';
|
'';
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
bzmenu
|
bzmenu
|
||||||
hyprshot
|
hyprshot
|
||||||
hyprlock
|
hyprlock
|
||||||
playerctl
|
|
||||||
];
|
];
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
@@ -116,12 +115,6 @@
|
|||||||
|
|
||||||
# Hyprshot
|
# Hyprshot
|
||||||
"$mod, Z, exec, hyprshot -m region"
|
"$mod, Z, exec, hyprshot -m region"
|
||||||
|
|
||||||
# Media keys
|
|
||||||
", XF86AudioPlay, exec, playerctl play-pause"
|
|
||||||
", XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"
|
|
||||||
", XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"
|
|
||||||
", XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
bindm = [
|
bindm = [
|
||||||
|
|||||||
@@ -21,27 +21,12 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
modules-right = [
|
modules-right = [
|
||||||
"pulseaudio"
|
|
||||||
"cpu"
|
|
||||||
"tray"
|
"tray"
|
||||||
|
"cpu"
|
||||||
"battery"
|
"battery"
|
||||||
"clock"
|
"clock"
|
||||||
];
|
];
|
||||||
|
|
||||||
pulseaudio = {
|
|
||||||
format = "{icon} {volume}%";
|
|
||||||
format-muted = " muted";
|
|
||||||
tooltip = false;
|
|
||||||
|
|
||||||
scroll-step = 5;
|
|
||||||
|
|
||||||
format-icons = {
|
|
||||||
default = [ "" "" "" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
on-click = "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
|
|
||||||
};
|
|
||||||
|
|
||||||
mpris = {
|
mpris = {
|
||||||
player = "spotify";
|
player = "spotify";
|
||||||
format = "{player_icon} {artist} - {title}";
|
format = "{player_icon} {artist} - {title}";
|
||||||
|
|||||||
Reference in New Issue
Block a user