9 lines
135 B
Nix
9 lines
135 B
Nix
{ config, pkgs, ... }: {
|
|
|
|
imports = [ ./hardware-configuration.nix ];
|
|
|
|
environment.systemPackages = with pkgs; [ git ];
|
|
|
|
# ...
|
|
|
|
} |