Compare commits
3 Commits
c6bf052da6
...
9c00f3c466
Author | SHA1 | Date | |
---|---|---|---|
![]() |
9c00f3c466 | ||
![]() |
5823b2d534 | ||
![]() |
f67ce54e8a |
@ -42,6 +42,7 @@
|
|||||||
startup_screen = "browser";
|
startup_screen = "browser";
|
||||||
startup_slave_screen = "visualizer";
|
startup_slave_screen = "visualizer";
|
||||||
playlist_disable_highlight_delay = "1";
|
playlist_disable_highlight_delay = "1";
|
||||||
|
now_playing_prefix = "$8$b ➤ ";
|
||||||
song_list_format = "{$2%a$9} $1|$9 {$5%t$9} $R {$6%b$9} $1|$9 {$2%l$9}";
|
song_list_format = "{$2%a$9} $1|$9 {$5%t$9} $R {$6%b$9} $1|$9 {$2%l$9}";
|
||||||
song_library_format = "{%n - }{%t}|{%f}";
|
song_library_format = "{%n - }{%t}|{%f}";
|
||||||
song_status_format = "$b{$6%a$9 $1|$9} {$7%t$9} $1|$9 {$2%b$9} $1|$9 {$6%y$9} $1|$9";
|
song_status_format = "$b{$6%a$9 $1|$9} {$7%t$9} $1|$9 {$2%b$9} $1|$9 {$6%y$9} $1|$9";
|
||||||
@ -80,7 +81,5 @@
|
|||||||
active_window_border = "red";
|
active_window_border = "red";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -14,5 +14,6 @@
|
|||||||
./virt.nix
|
./virt.nix
|
||||||
./boot.nix
|
./boot.nix
|
||||||
./hw.nix
|
./hw.nix
|
||||||
|
./radio.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
hackrf
|
||||||
|
];
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
bluetooth = {
|
bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -7,9 +11,5 @@
|
|||||||
graphics = {
|
graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
rtl-sdr = {
|
|
||||||
enable = true;
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
gdb
|
gdb
|
||||||
vscode
|
vscode
|
||||||
neovide
|
neovide
|
||||||
|
chromium
|
||||||
|
|
||||||
# Command-line utilities
|
# Command-line utilities
|
||||||
neofetch
|
neofetch
|
||||||
|
11
hosts/default/system/radio.nix
Normal file
11
hosts/default/system/radio.nix
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
hardware = {
|
||||||
|
rtl-sdr = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
hackrf = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user