Compare commits
3 Commits
c6bf052da6
...
9c00f3c466
Author | SHA1 | Date | |
---|---|---|---|
![]() |
9c00f3c466 | ||
![]() |
5823b2d534 | ||
![]() |
f67ce54e8a |
@ -42,6 +42,7 @@
|
||||
startup_screen = "browser";
|
||||
startup_slave_screen = "visualizer";
|
||||
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_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";
|
||||
@ -80,7 +81,5 @@
|
||||
active_window_border = "red";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
};
|
||||
}
|
||||
|
@ -14,5 +14,6 @@
|
||||
./virt.nix
|
||||
./boot.nix
|
||||
./hw.nix
|
||||
./radio.nix
|
||||
];
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
hackrf
|
||||
];
|
||||
|
||||
hardware = {
|
||||
bluetooth = {
|
||||
enable = true;
|
||||
@ -7,9 +11,5 @@
|
||||
graphics = {
|
||||
enable = true;
|
||||
};
|
||||
rtl-sdr = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -20,6 +20,7 @@
|
||||
gdb
|
||||
vscode
|
||||
neovide
|
||||
chromium
|
||||
|
||||
# Command-line utilities
|
||||
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