dotfiles/nix/darwin/darwin-configuration.nix

117 lines
2.7 KiB
Nix
Raw Normal View History

2022-04-17 16:02:03 -04:00
{ config, pkgs, inputs, ... }:
2022-02-21 14:01:24 -05:00
{
2022-05-02 19:25:20 -04:00
nix = {
package = pkgs.nix;
useSandbox = true;
2022-05-02 19:25:20 -04:00
extraOptions = ''
experimental-features = nix-command flakes
'';
};
2022-04-17 16:02:03 -04:00
imports = [
./program-neovim.nix
];
2022-02-21 14:01:24 -05:00
# I'm not a zealot about this one.
nixpkgs.config.allowUnfree = true;
2022-04-17 16:02:03 -04:00
nixpkgs.overlays = [
(self: super: {
neovim = super.neovim.override {
viAlias = true;
vimAlias = true;
};
})
2022-04-17 17:11:03 -04:00
inputs.rust-overlay
2022-04-17 16:02:03 -04:00
];
environment.variables = {
EDITOR="nvim";
PAGER="less -R";
};
programs = with pkgs; {
neovim.enable = true;
neovim.configure = {
customRC = (builtins.readFile ../../.vimrc);
2022-04-17 16:02:03 -04:00
packages.myVimPackage = with pkgs.vimPlugins; {
start = [
2022-04-17 17:11:03 -04:00
coc-nvim
2022-04-17 16:02:03 -04:00
nerdtree
vim-nix
coc-rust-analyzer
2022-04-17 17:11:03 -04:00
coc-diagnostic
coc-markdownlint
coc-tslint
coc-explorer
2022-04-17 16:02:03 -04:00
coc-git
coc-vimlsp
coc-python
coc-clangd
coc-go
coc-html
coc-css
coc-yaml
coc-json
vim-toml
hoon-vim
];
};
};
zsh.enable = true; # default shell on catalina
};
2022-02-21 14:01:24 -05:00
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
with pkgs; [
2022-04-17 17:11:03 -04:00
nodejs
2022-04-17 16:02:03 -04:00
tmux
gnumake
2022-04-17 17:11:03 -04:00
# TODO find a version of the julia package that will install
# on darwin and add it as an overlay
2022-02-21 14:01:24 -05:00
python
emacs
git
mercurial
bash
2022-04-17 17:11:03 -04:00
curl
wget
jq
spacebar
coreutils
watch
iterm2
2022-05-11 15:45:19 -04:00
go
htop
colima
lima
2022-06-14 19:33:33 -04:00
rlwrap
docker-client
google-cloud-sdk
inputs.sile
inputs.runwhen
inputs.durnitisp
2022-07-14 17:28:42 -04:00
inputs.jj
2022-04-17 17:11:03 -04:00
# TODO add sonic-pi here if it supports the arch
2022-02-21 14:01:24 -05: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";
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
2022-02-21 14:01:24 -05:00
#services.spacebar.enable = true;
#services.spacebar.package = "${pkgs.spacebar}";
# Create /etc/bashrc that loads the nix-darwin environment.
# programs.bash.enable = true; # default shell on catalina
2022-02-21 14:01:24 -05:00
# programs.fish.enable = true;
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 4;
}