nixos/sysConfig/default.nix
2023-03-22 00:11:44 -04:00

25 lines
510 B
Nix

{ pkgs, ... }:
{
# Nix requires default.nix to build the system properly, do not rename it.
# Add or remove imports based on the modules in your sysConfig directory.
imports = [
./audio.nix
./boot.nix
./gui.nix
./hardware.nix
./locale.nix
./network.nix
./users.nix
./virt.nix
];
# Enable nix commands and flakes
nix = {
package = pkgs.nixFlakes;
extraOptions = "experimental-features = nix-command flakes";
};
system.stateVersion = "22.11"; # Do not edit this variable.
}