mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 14:20:33 +01:00
idk anymore
This commit is contained in:
parent
45e0340119
commit
e093396119
|
@ -2,5 +2,6 @@
|
||||||
{
|
{
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
"electron-25.9.0"
|
"electron-25.9.0"
|
||||||
|
"electron-24.8.6"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue