myNixosFlake/nixos/system-packages.nix
2025-01-15 22:31:14 +03:00

14 lines
333 B
Nix

# Edit this configuration file to define what should be installed on
# your SYSTEM. For something simple use home-manager.
{ inputs, pkgs, ...}: {
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
inputs.envycontrol.packages.x86_64-linux.default
home-manager
nh
];
}