1
Fork 0
dotfiles/.bauke/nix/stardust/configuration.nix

26 lines
533 B
Nix
Raw Normal View History

2023-02-01 13:31:56 +00:00
# The main configuration file.
{ pkgs, ... }:
{
imports = [
./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";
}