13 lines
247 B
Nix
13 lines
247 B
Nix
{...}: {
|
|
nixpkgs.config = {
|
|
# Disable if you don't want unfree packages
|
|
allowUnfree = true;
|
|
};
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
../../system_profiles/defaults.nix
|
|
../../system_profiles/mini-container.nix
|
|
];
|
|
}
|