epicurus: basic config

This commit is contained in:
James Walker 2021-09-25 21:49:28 -04:00
parent 8934a57ef7
commit 8d9798bd98
Signed by: walkah
GPG Key ID: 3C127179D6086E93

View File

@ -0,0 +1,24 @@
{ config, lib, pkgs, ... }:
{
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = [ pkgs.vim ];
# 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";
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.package = pkgs.nix;
programs.zsh = {
enable = true;
promptInit = "";
};
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 4;
}