14 lines
342 B
Nix
14 lines
342 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
rose-pine-gtk-theme
|
|
virtiofsd
|
|
linux-pam
|
|
lm_sensors
|
|
];
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
|
time.timeZone = "Europe/Istanbul";
|
|
zramSwap.enable = true;
|
|
programs.localsend.enable = true;
|
|
}
|