myNixosFlake/nixos/system-packages.nix

14 lines
333 B
Nix
Raw Normal View History

2024-10-14 18:43:31 +03:00
# 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
];
}