Compare commits

..

8 Commits

Author SHA1 Message Date
Sojus07
a7a9e9fd6a YEAH 2025-03-02 14:55:49 +01:00
Sojus07
89f10fbf63 SKIBIDI TOILET 2025-02-25 22:35:08 +01:00
Sojus07
ec50143a97 SKIBIDI TOILET 2025-02-25 22:33:40 +01:00
Sojus07
68f9f0afb0 SKIBIDI TOILET 2025-02-25 22:10:36 +01:00
Sojus07
eb10424ccf Add DHCPCD 2025-02-25 17:54:49 +01:00
Sojus07
21feb914f0 Add STUFF to hwc.nix 2025-02-25 15:39:49 +01:00
Sojus07
40e02f8ece Disabled Firewall 2025-02-25 15:38:36 +01:00
Sojus07
5834779d2b Enabled Firewall 2025-02-25 14:24:00 +01:00
9 changed files with 22 additions and 3 deletions

View File

@ -24,8 +24,11 @@
".wp/wolf.png".source = ./raw/wp/wolf.png; ".wp/wolf.png".source = ./raw/wp/wolf.png;
".wp/nixos_dark.png".source = ./raw/wp/nixos_dark.png; ".wp/nixos_dark.png".source = ./raw/wp/nixos_dark.png;
".wp/GABE_Windows.png".source = ./raw/wp/GABE_Windows.png; ".wp/GABE_Windows.png".source = ./raw/wp/GABE_Windows.png;
".wp/skulls.png".source = ./raw/wp/skulls.png;
".wp/soyuz.png".source = ./raw/wp/soyuz.png; ".wp/soyuz.png".source = ./raw/wp/soyuz.png;
".wp/bridge.png".source = ./raw/wp/bridge.png;
".wp/skulls.png".source = ./raw/wp/skulls.png;
".wp/purple_plants.png".source = ./raw/wp/purple_plants.png;
".wp/black_hole.png".source = ./raw/wp/black_hole.png;
}; };
}; };
} }

View File

@ -38,7 +38,7 @@
visualizer_data_source = "/tmp/mpd.fifo"; visualizer_data_source = "/tmp/mpd.fifo";
visualizer_output_name = "my_fifo"; visualizer_output_name = "my_fifo";
visualizer_in_stereo = "yes"; visualizer_in_stereo = "yes";
visualizer_type = "spectrum"; visualizer_type = "wave";
visualizer_look = ""; visualizer_look = "";
visualizer_color = "7, 5, 4, 3"; visualizer_color = "7, 5, 4, 3";
startup_screen = "playlist"; startup_screen = "playlist";

View File

@ -69,7 +69,6 @@
run-shell ~/.tmux/plugins/tmux-nova/nova.tmux run-shell ~/.tmux/plugins/tmux-nova/nova.tmux
run '~/.tmux/plugins/tpm/tpm' run '~/.tmux/plugins/tpm/tpm'
''; '';
}; };
}; };

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 MiB

View File

@ -1,5 +1,16 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [
iperf3
speedtest-cli
dhcpcd
];
services = {
iperf3 = {
enable = true;
};
};
networking = { networking = {
networkmanager.enable = true; networkmanager.enable = true;
firewall = { firewall = {
@ -7,6 +18,7 @@
allowedTCPPorts = [ allowedTCPPorts = [
80 80
1337 1337
5001
8080 8080
3000 3000
8000 8000

View File

@ -33,6 +33,7 @@
htop htop
btop btop
jq jq
ffmpeg
# Development & compilers # Development & compilers
rustup rustup

View File

@ -23,6 +23,10 @@
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };
fileSystems."/media/STUFF" =
{ device = "/dev/disk/by-label/STUFF";
fsType = "ext4";
};
swapDevices = [ ]; swapDevices = [ ];