FrameworkNix/system/default.nix

27 lines
456 B
Nix
Raw Permalink Normal View History

2024-02-19 23:19:01 +00:00
{
imports = [
2024-03-11 17:31:39 +00:00
./boot.nix
2024-02-19 23:19:01 +00:00
./environment.nix
./locale.nix
./networking.nix
./xserver.nix
./services.nix
./appliances.nix
];
nix = {
settings = {
# Enable flakes and new 'nix' command
experimental-features = "nix-command flakes";
# Deduplicate and optimize nix store
auto-optimise-store = true;
};
};
nixpkgs.config = {
allowUnfree = true;
};
system.stateVersion = "23.05";
}