nixdots/modules/nixos/common.nix

36 lines
833 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
git
rose-pine-gtk-theme
virtiofsd
linux-pam
lm_sensors
wireguard-tools
iproute2
util-linux
qdirstat
moonlight-qt
amdgpu_top
rclone
crosspipe
];
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
time.timeZone = "Europe/Istanbul";
zramSwap.enable = true;
programs.localsend.enable = true;
networking.firewall.checkReversePath = "loose";
services.resolved.enable = true;
networking.networkmanager.enable = true;
hardware.graphics = {
enable = true;
enable32Bit = true;
};
networking.hosts = {
"192.168.1.69" = ["overlord"];
"192.168.1.100" = ["beatrice"];
"192.168.1.114" = ["archangel"];
"49.13.170.223" = ["kittykat"];
};
}