nixos/nixos/common/default.nix
2025-12-13 12:45:45 +00:00

25 lines
314 B
Nix

{
inputs,
pkgs,
vars,
...
}:
{
imports= [
../../users/${vars.user}.nix
../modules/zsh.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
tree
htop
dig
traceroute
];
}