9 lines
148 B
Nix
9 lines
148 B
Nix
# Only install Chrome. Declaritive options not needed.
|
|
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages =
|
|
(with pkgs; [
|
|
google-chrome
|
|
]);
|
|
}
|