2018-01-13 14:56:49 +01:00
|
|
|
{ config, pkgs, ... }:
|
2016-12-11 13:58:57 +01:00
|
|
|
|
2018-01-13 14:56:49 +01:00
|
|
|
{
|
2016-12-11 13:58:57 +01:00
|
|
|
# List packages installed in system profile. To search by name, run:
|
|
|
|
# $ nix-env -qaP | grep wget
|
|
|
|
environment.systemPackages =
|
2018-08-21 22:42:33 +02:00
|
|
|
[ pkgs.vim
|
2016-12-11 13:58:57 +01:00
|
|
|
];
|
|
|
|
|
2018-08-26 14:32:23 +02:00
|
|
|
# Use a custom configuration.nix location.
|
|
|
|
# $ darwin-rebuild switch -I darwin-config=$HOME/.config/nixpkgs/darwin/configuration.nix
|
|
|
|
# environment.darwinConfig = "$HOME/.config/nixpkgs/darwin/configuration.nix";
|
|
|
|
|
2018-03-26 22:43:12 +02:00
|
|
|
# Auto upgrade nix package and the daemon service.
|
|
|
|
# services.nix-daemon.enable = true;
|
|
|
|
# nix.package = pkgs.nix;
|
|
|
|
|
2024-10-31 15:02:36 +11:00
|
|
|
# Enable alternative shell support in nix-darwin.
|
2018-01-14 19:31:48 +01:00
|
|
|
# programs.fish.enable = true;
|
2016-12-11 16:33:42 +01:00
|
|
|
|
2017-10-01 16:18:37 +02:00
|
|
|
# Used for backwards compatibility, please read the changelog before changing.
|
|
|
|
# $ darwin-rebuild changelog
|
2024-09-10 16:17:57 +01:00
|
|
|
system.stateVersion = 5;
|
2016-12-11 13:58:57 +01:00
|
|
|
}
|