Compare commits

...

3 Commits

Author SHA1 Message Date
Sojus07
9c00f3c466 Add package hackrf 2025-03-12 13:39:54 +01:00
Sojus07
5823b2d534 ADD HACKRF and radio.nix 2025-03-12 13:27:36 +01:00
Sojus07
f67ce54e8a YEAH 2025-03-08 23:24:13 +01:00
5 changed files with 18 additions and 6 deletions

View File

@ -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";
};
};
};
}

View File

@ -14,5 +14,6 @@
./virt.nix
./boot.nix
./hw.nix
./radio.nix
];
}

View File

@ -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;
};
};
}

View File

@ -20,6 +20,7 @@
gdb
vscode
neovide
chromium
# Command-line utilities
neofetch

View File

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
hardware = {
rtl-sdr = {
enable = true;
};
hackrf = {
enable = true;
};
};
}