1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

examples: remove nix-repl and nixUnstable references

This commit is contained in:
Daiderd Jordan 2018-08-21 22:42:33 +02:00
parent 6de3c1f3e1
commit f190254679
No known key found for this signature in database
GPG key ID: D02435D05B810C96
6 changed files with 4 additions and 12 deletions

View file

@ -52,7 +52,7 @@ Check out [modules/examples](https://github.com/LnL7/nix-darwin/tree/master/modu
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
[ pkgs.nix-repl
[ pkgs.vim
];
# Auto upgrade nix package and the daemon service.

View file

@ -20,7 +20,7 @@ in {
environment.systemPackages = mkOption {
type = types.listOf types.package;
default = [];
example = literalExample "[ pkgs.nix-repl pkgs.vim ]";
example = literalExample "[ pkgs.curl pkgs.vim ]";
description = ''
The set of packages that appear in
/run/current-system/sw. These packages are

View file

@ -10,12 +10,6 @@ let
in
{
# 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;

View file

@ -14,7 +14,6 @@ with lib;
# Keep nix-daemon updated.
services.nix-daemon.enable = true;
nix.package = pkgs.nixUnstable;
nix.gc.automatic = true;
nix.gc.options = "--max-freed $((25 * 1024**3 - 1024 * $(df -P -k /nix/store | tail -n 1 | awk '{ print $4 }')))";

View file

@ -4,7 +4,7 @@
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
[ pkgs.nix-repl
[ pkgs.vim
];
# Auto upgrade nix package and the daemon service.

View file

@ -59,7 +59,7 @@ let
packageSet = {
inherit (pkgs)
stdenv bash zsh nix nix-repl
stdenv bash zsh nix
tmux reattach-to-user-namespace
nano emacs vim;
};
@ -73,7 +73,6 @@ let
jobs.bash.x86_64-darwin
jobs.zsh.x86_64-darwin
jobs.nix.x86_64-darwin
jobs.nix-repl.x86_64-darwin
jobs.reattach-to-user-namespace.x86_64-darwin
jobs.tmux.x86_64-darwin
jobs.nano.x86_64-darwin