Compare commits

...

3 Commits

Author SHA1 Message Date
Sojus07
f1a7bf0b6b kekl 2025-02-23 16:55:41 +01:00
Sojus07
5443a41016 kekl 2025-02-23 14:35:21 +01:00
Sojus07
20ff1d16dd kekl 2025-02-20 02:22:28 +01:00
5 changed files with 77 additions and 47 deletions

View File

@ -29,32 +29,47 @@
programs = {
ncmpcpp = {
enable = true;
package = pkgs.ncmpcpp.override { visualizerSupport = true; };
mpdMusicDir = "/home/fabian/.music";
bindings = [
];
settings = {
ncmpcpp_directory = "~/.ncmpcpp";
mpd_host = "localhost";
mpd_port = 6600;
header_window_color = "cyan";
progressbar_look = "";
visualizer_color = "cyan";
visualizer_look = "";
now_playing_prefix = "󰮯 ";
visualizer_type = "wave";
song_status_format = " $2%a $4$3 $8%t $4$3 $5%b ";
autocenter_mode = "yes";
centered_cursor = "yes";
display_bitrate = "no";
enable_window_title = "no";
follow_now_playing_lyrics = "yes";
ignore_leading_the = "yes";
empty_tag_marker = "";
mpd_crossfade_time = 2;
mouse_support = "yes";
visualizer_data_source = "/tmp/mpd.fifo";
visualizer_output_name = "my_fifo";
header_visibility = false;
statusbar_visibility = true;
titles_visibility = true;
visualizer_in_stereo = "yes";
visualizer_type = "spectrum";
visualizer_look = "";
visualizer_color = "7, 5, 4, 3";
startup_screen = "playlist";
startup_slave_screen = "visualizer";
song_list_format = "[%l] - [ %a | %t] ";
locked_screen_width_part = 50;
ask_for_locked_screen_width_part = "no";
playlist_display_mode = "classic";
autocenter_mode = "yes";
progressbar_look = "___";
header_visibility = "no";
statusbar_visibility = "no";
titles_visibility = "no";
follow_now_playing_lyrics = "no";
enable_window_title = "no";
external_editor = "vis";
colors_enabled = "yes";
empty_tag_color = "red";
header_window_color = "yellow";
volume_color = "yellow";
state_line_color = "red";
state_flags_color = "yellow";
main_window_color = "default";
color1 = "red";
color2 = "red";
progressbar_color = "5";
progressbar_elapsed_color = "4";
statusbar_color = "black";
alternative_ui_separator_color = "magenta";
window_border_color = "yellow";
active_window_border = "magenta";
};
};
};

View File

@ -1,17 +0,0 @@
[options]
HoldPkg = pacman glibc
Architecture = auto
UseSyslog
Color
ILoveCandy
CheckSpace
VerbosePkgLists
ParallelDownloads = 5
SigLevel = Never
LocalFileSigLevel = Optional
[dkp-libs]
Server = https://pkg.devkitpro.org/packages
[dkp-linux]
Server = https://pkg.devkitpro.org/packages/linux/$arch/

View File

@ -60,7 +60,23 @@
environment.etc = {
"makepkg.conf".source = "${pkgs.pacman}/etc/makepkg.conf";
"pacman.conf".source = ../default/raw/pacman.conf;
"pacman.conf".text = ''
[options]
HoldPkg = pacman glibc
UseSyslog
Color
ILoveCandy
CheckSpace
VerbosePkgLists
ParallelDownloads = 5
SigLevel = Never
[dkp-libs]
Server = https://pkg.devkitpro.org/packages
[dkp-linux]
Server = https://pkg.devkitpro.org/packages/linux/x86_64/
'';
};
system.stateVersion = "25.05";

View File

@ -24,15 +24,14 @@
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/media/STUFF" =
{ device = "/dev/disk/by-label/STUFF";
fsType = "ext4";
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;

View File

@ -54,7 +54,24 @@
environment.etc = {
"makepkg.conf".source = "${pkgs.pacman}/etc/makepkg.conf";
"pacman.conf".source = ../default/raw/pacman.conf;
"pacman.conf".text = ''
[options]
HoldPkg = pacman glibc
UseSyslog
Color
ILoveCandy
CheckSpace
VerbosePkgLists
ParallelDownloads = 5
SigLevel = Never
[dkp-libs]
Server = https://pkg.devkitpro.org/packages
[dkp-linux]
Server = https://pkg.devkitpro.org/packages/linux/x86_64/
'';
};
system.stateVersion = "25.05";