idk anymore

This commit is contained in:
xqtc161 2024-03-06 17:19:49 +01:00
parent 45e0340119
commit e093396119
3 changed files with 12 additions and 2 deletions

View file

@ -2,5 +2,6 @@
{ {
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [
"electron-25.9.0" "electron-25.9.0"
"electron-24.8.6"
]; ];
} }

View file

@ -171,6 +171,10 @@ $character'';
textColor = "#cdd6f4"; textColor = "#cdd6f4";
}; };
services.easyeffects = {
enable = true;
};
home.packages = with pkgs; [ home.packages = with pkgs; [
neofetch neofetch
uwufetch uwufetch
@ -220,6 +224,7 @@ $character'';
spotify spotify
sayonara sayonara
mpv mpv
feishin
nixos-icons nixos-icons
swww swww

View file

@ -16,12 +16,16 @@
*/ */
{ config, lib, pkgs, ... }: { config, inputs, lib, pkgs, ... }:
{ {
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../common
#../antivirus.nix
../../modules/home-manager.nix
../gc.nix
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
@ -199,7 +203,7 @@
services.tailscale.enable = true; services.tailscale.enable = true;
# Open ports in the firewall. # Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 8096 8080 8082 ]; networking.firewall.allowedTCPPorts = [ 2234 8096 8080 8082 ];
# networking.firewall.allowedUDPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether. # Or disable the firewall altogether.
# networking.firewall.enable = false; # networking.firewall.enable = false;