mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-05 16:27:03 +00:00
17 lines
426 B
Nix
17 lines
426 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
|
|
# List packages installed in system profile. To search by name, run:
|
|
# $ nix-env -qaP | grep wget
|
|
environment.systemPackages =
|
|
[ pkgs.nix-repl
|
|
];
|
|
|
|
# Create /etc/bashrc that loads the nix-darwin environment.
|
|
programs.bash.enable = true;
|
|
programs.bash.enableCompletion = false;
|
|
|
|
# Recreate /run/current-system symlink after boot.
|
|
services.activate-system.enable = true;
|
|
|
|
}
|