Configuration files for my GNU/Linux installation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/nix-darwin/configuration.nix

38 lines
918 B

2 weeks ago
{ pkgs, ... }:
{
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
2 weeks ago
environment.systemPackages = with pkgs; [
git
2 weeks ago
];
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
2 weeks ago
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
2 weeks ago
2 weeks ago
# Enable zsh
programs.zsh.enable = true;
2 weeks ago
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 6;
2 weeks ago
# Allow unfree (and optionally broken) packages
nixpkgs.config = {
allowUnfree = true;
# If needed, you can also allow broken packages:
# allowBroken = true;
};
2 weeks ago
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
2 weeks ago
users.users.elal = {
name = "elal";
home = "/Users/elal";
};
2 weeks ago
}