2023-02-01 13:31:56 +00:00
|
|
|
# The main configuration file.
|
|
|
|
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2023-02-04 11:53:42 +00:00
|
|
|
./hardware-configuration.nix # Created by nixos-generate-config.
|
2023-02-01 13:31:56 +00:00
|
|
|
./packages.nix
|
|
|
|
./programs-services.nix
|
|
|
|
./system.nix
|
2023-02-02 11:00:11 +00:00
|
|
|
./users.nix
|
2023-02-01 13:31:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
nix = {
|
|
|
|
settings.experimental-features = [ "flakes" "nix-command" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nixpkgs = {
|
|
|
|
config.allowUnfree = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Before changing this value read the documentation for this option!
|
|
|
|
# https://search.nixos.org/options?channel=22.11&show=system.stateVersion
|
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|