Files
nix-config/systems/modules/common.nix
2026-01-28 18:11:35 +01:00

19 lines
308 B
Nix

{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
users.defaultUserShell = pkgs.zsh;
environment.systemPackages = with pkgs; [
gnumake
git
];
security.rtkit.enable = true;
system.stateVersion = "25.11";
}