Compare commits

...

13 Commits

Author SHA1 Message Date
Sojus07
c3aba30c34 add yt-dlp 2025-04-11 02:30:51 +02:00
Sojus07
160ea2abc7 pepega 2025-04-02 15:16:52 +02:00
Sojus07
4747ba1c58 pepega 2025-04-02 15:01:09 +02:00
Sojus07
a4a76bd91f MonkaS 2025-03-27 22:58:48 +01:00
Sojus07
9999dc3baf add yt-dlp 2025-03-27 22:40:59 +01:00
Sojus07
009edeb259 removed yt-dlp 2025-03-27 22:33:05 +01:00
Sojus07
617119491f Add Adwaita and dconf 2025-03-19 18:27:28 +01:00
Sojus07
76bb9c4d60 DUHHHH 2025-03-16 19:41:33 +01:00
Sojus07
fb10bb05eb Add Chromium setting 2025-03-12 16:59:11 +01:00
Sojus07
bfaf0a1b9c Add Chromium 2025-03-12 13:43:16 +01:00
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
9 changed files with 42 additions and 11 deletions

View File

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

View File

@ -27,7 +27,6 @@
bind -n M-Up select-pane -U bind -n M-Up select-pane -U
bind -n M-Down select-pane -D bind -n M-Down select-pane -D
set-option -s status-interval 1
set -g status-left-length 100 set -g status-left-length 100
set -g status-right-length 100 set -g status-right-length 100
set -g status-position top set -g status-position top
@ -37,8 +36,6 @@
set -g @plugin 'o0th/tmux-nova' set -g @plugin 'o0th/tmux-nova'
set -g @nova-nerdfonts true set -g @nova-nerdfonts true
set -g @nova-nerdfonts-left
set -g @nova-nerdfonts-right
set -g @nova-pane-active-border-style "#44475a" set -g @nova-pane-active-border-style "#44475a"
set -g @nova-pane-border-style "#282a36" set -g @nova-pane-border-style "#282a36"

View File

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
chromium
];
programs.chromium = {
enable = true;
extensions = [
"eimadpbcbfnmbkopoojfekhnkhdbieeh" # Dark Reader
];
extraOpts = {
"BrowserSignin" = 0;
"SyncDisabled" = true;
"PasswordManagerEnabled" = false;
};
};
}

View File

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

View File

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

View File

@ -3,7 +3,6 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# System utilities # System utilities
unzip unzip
yt-dlp
inetutils inetutils
git git
wget wget
@ -93,6 +92,7 @@
cubicsdr cubicsdr
gqrx gqrx
multimon-ng multimon-ng
stellarium
# Miscellaneous # Miscellaneous
cava cava
@ -101,8 +101,10 @@
wf-recorder wf-recorder
qbittorrent qbittorrent
superTuxKart superTuxKart
adwaita-icon-theme
]; ];
fonts = { fonts = {
fontconfig.enable = true; fontconfig.enable = true;
packages = with pkgs; [ packages = with pkgs; [

View File

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

View File

@ -50,6 +50,9 @@
programs = { programs = {
nix-ld.enable = true; nix-ld.enable = true;
fish.enable = true; fish.enable = true;
dconf = {
enable = true;
};
}; };
environment.etc = { environment.etc = {

View File

@ -19,7 +19,7 @@
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-label/ESP"; { device = "/dev/disk/by-uuid/9AA3-DC16";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };