15 lines
290 B
Nix
15 lines
290 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
{
|
||
|
system = "x86_64-linux";
|
||
|
system.stateVersion = "24.11";
|
||
|
|
||
|
nix = {
|
||
|
settings = {
|
||
|
experimental-features = [ "nix-command" "flakes" ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
git
|
||
|
];
|
||
|
}
|