Files
nix-config/modules/common.nix
Armel van Ravels bc16b994a0 Reorganize modules
2026-07-23 17:55:54 +02:00

25 lines
366 B
Nix

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