This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-flake/modules/base/default.nix

16 lines
192 B
Nix

_: {
imports = [
./user
./network
./i18n
./nixos
./programs
./ssh
./power-management
];
config = {
hardware.enableRedistributableFirmware = true;
};
}