nixos/nixos/common/default.nix

26 lines
314 B
Nix
Raw Normal View History

2025-12-08 20:30:22 -05:00
{
inputs,
pkgs,
vars,
...
}:
{
imports= [
../../users/${vars.user}.nix
../modules/zsh.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2025-12-13 12:45:45 +00:00
nixpkgs.config.allowUnfree = true;
2025-12-09 18:27:15 -05:00
environment.systemPackages = with pkgs; [
2025-12-08 20:30:22 -05:00
tree
htop
dig
traceroute
];
}