mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 22:02:25 +01:00
19 lines
251 B
Nix
19 lines
251 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
nix = {
|
|
package = pkgs.nixFlakes;
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
}
|