nixos-config/modules/common-system.nix

30 lines
476 B
Nix

{ config, pkgs, inputs, ... }: {
imports = [ ./nix-config.nix ];
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "Europe/Berlin";
environment.systemPackages = with pkgs; [
wget
tmux
ripgrep
git
dua
erdtree
eza
fd
fzf
bat
lshw
pciutils
];
networking.firewall.enable = true;
nix = {
registry = {
nixpkgs.flake = inputs.nixpkgs;
nixpkgs-unstable.flake = inputs.nixpkgs-unstable;
};
};
}