19 lines
276 B
Nix
19 lines
276 B
Nix
{ ... }:
|
|
|
|
{
|
|
nixpkgs.config = {
|
|
allowBroken = false;
|
|
allowUnfree = true;
|
|
};
|
|
|
|
imports = [
|
|
../../profiles/common/configuration.nix
|
|
../../profiles/graphical/configuration.nix
|
|
|
|
./pkg.nix
|
|
./system.nix
|
|
./hw.nix
|
|
./user.nix
|
|
./boot.nix
|
|
];
|
|
}
|