nixdots/modules/nixos/common.nix
2026-01-16 17:36:16 +03:00

19 lines
434 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
git
rose-pine-gtk-theme
virtiofsd
linux-pam
lm_sensors
wireguard-tools
iproute2
util-linux
];
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
time.timeZone = "Europe/Istanbul";
zramSwap.enable = true;
programs.localsend.enable = true;
networking.networkmanager.enable = true;
}