mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 21:20:32 +01:00
41 lines
960 B
Nix
41 lines
960 B
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [./syncthing.nix];
|
|
#nixpkgs.config.permittedInsecurePackages = ["electron-25.9.0" "electron-24.8.6"];
|
|
# networking.hosts = {
|
|
# "192.168.178.35" = ["jellyfin.fritz.box" "grafana.fritz.box"];
|
|
# };
|
|
# environment.systemPackages = with pkgs; [
|
|
# xdg-desktop-portal-hyprland
|
|
# xdg-desktop-portal
|
|
# ];
|
|
programs.nh = {
|
|
enable = true;
|
|
clean.enable = true;
|
|
clean.extraArgs = "--keep-since 4d --keep 3";
|
|
flake = "/home/xqtc/nixos-config";
|
|
};
|
|
networking.firewall.allowedTCPPorts = [8384 22000];
|
|
networking.firewall.allowedUDPPorts = [22000 21027];
|
|
|
|
programs.nix-ld = {
|
|
enable = true;
|
|
package = pkgs.nix-ld-rs;
|
|
};
|
|
|
|
nix.settings = {
|
|
trusted-users = ["xqtc"];
|
|
substituters = [
|
|
"https://nix-community.cachix.org"
|
|
];
|
|
trusted-public-keys = [
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
];
|
|
};
|
|
}
|