fix(home): minor fixes
This commit is contained in:
parent
7625687816
commit
8ae77d70dc
4 changed files with 7 additions and 5 deletions
|
|
@ -34,7 +34,6 @@ in
|
||||||
|
|
||||||
diffsitter # Better diff
|
diffsitter # Better diff
|
||||||
jq # JSON pretty printer and manipulator
|
jq # JSON pretty printer and manipulator
|
||||||
comma # Install and run with ","
|
|
||||||
tldr # Community maintained help pages
|
tldr # Community maintained help pages
|
||||||
progress
|
progress
|
||||||
killall
|
killall
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{ osConfig, pkgs, config, lib, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (config.colorscheme) palette;
|
inherit (config.colorscheme) palette;
|
||||||
|
|
@ -7,6 +7,7 @@ let
|
||||||
cfg = config.ooknet.media.music.tui;
|
cfg = config.ooknet.media.music.tui;
|
||||||
zellij = config.ooknet.multiplexer.zellij;
|
zellij = config.ooknet.multiplexer.zellij;
|
||||||
multiplexer= config.ooknet.console.multiplexer;
|
multiplexer= config.ooknet.console.multiplexer;
|
||||||
|
hostName = osConfig.networking.hostName;
|
||||||
|
|
||||||
# removed image support because it was causing issues with zellij
|
# removed image support because it was causing issues with zellij
|
||||||
spotify-cli = pkgs.spotify-player.override {
|
spotify-cli = pkgs.spotify-player.override {
|
||||||
|
|
@ -62,7 +63,7 @@ in
|
||||||
enable_notify = true
|
enable_notify = true
|
||||||
enable_cover_image_cache = false
|
enable_cover_image_cache = false
|
||||||
notify_streaming_only = false
|
notify_streaming_only = false
|
||||||
default_device = "${config.home.sessionVariables.HN}"
|
default_device = "${hostName}"
|
||||||
play_icon = "▶"
|
play_icon = "▶"
|
||||||
pause_icon = "▌▌"
|
pause_icon = "▌▌"
|
||||||
liked_icon = "♥"
|
liked_icon = "♥"
|
||||||
|
|
@ -72,7 +73,7 @@ in
|
||||||
playback_window_width = 6
|
playback_window_width = 6
|
||||||
|
|
||||||
[device]
|
[device]
|
||||||
name = "${config.home.sessionVariables.HN}"
|
name = "${hostName}"
|
||||||
device_type = "speaker"
|
device_type = "speaker"
|
||||||
volume = 100
|
volume = 100
|
||||||
bitrate = 320
|
bitrate = 320
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,6 @@ in
|
||||||
{
|
{
|
||||||
config = mkIf (multiplexer == "zellij" && launcher == "rofi") {
|
config = mkIf (multiplexer == "zellij" && launcher == "rofi") {
|
||||||
home.packages = [ inputs.ooks-scripts.packages.${pkgs.system}.zellijmenu ];
|
home.packages = [ inputs.ooks-scripts.packages.${pkgs.system}.zellijmenu ];
|
||||||
ooknet.binds.zellijMenu = "zellijMenu -n";
|
ooknet.binds.zellijMenu = "zellijmenu -n";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,7 @@
|
||||||
./gaming.nix
|
./gaming.nix
|
||||||
./creative.nix
|
./creative.nix
|
||||||
./productivity.nix
|
./productivity.nix
|
||||||
|
./console-tools.nix
|
||||||
|
./media.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue