25 lines
404 B
Nix
25 lines
404 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; }; };
|
|
}
|