reo101
df9ce2d4e2
Update flake (`neovim-nightly-overlay` is fixed) Format all `.nix` files Unify package/module argument order: - `inputs`, `outputs`, `lib`, `pkgs`, `config`, ... Move Jellyfin config to a `NixOS` module (first one, yay) Add `direnv` to `reo101-shell` modules (was used, but not defined as wanted) - TODO: make it optional (module config options)
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ inputs, outputs, lib, pkgs, config, ... }:
|
|
|
|
{
|
|
home = {
|
|
# username = "apavel";
|
|
# homeDirectory = "/Users/apavel";
|
|
stateVersion = "22.05";
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
|
|
home.packages = with pkgs; [
|
|
# Dhall
|
|
dhall
|
|
dhall-lsp-server
|
|
|
|
# Nix
|
|
rnix-lsp
|
|
nil
|
|
|
|
# Zig
|
|
zigpkgs.master
|
|
inputs.zls-overlay.packages.x86_64-darwin.default
|
|
];
|
|
|
|
nixpkgs = {
|
|
overlays = [
|
|
inputs.zig-overlay.overlays.default
|
|
];
|
|
|
|
config.allowUnfree = true;
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "apavel";
|
|
userEmail = "apavel@vmware.com";
|
|
signing = {
|
|
signByDefault = true;
|
|
key = "0x52F3E1D376F692C0";
|
|
};
|
|
};
|
|
|
|
# services.gpg-agent = {
|
|
# enable = true;
|
|
# defaultCacheTtl = 1800;
|
|
# enableSshSupport = true;
|
|
# };
|
|
|
|
# home.file.".stack/config.yaml".text = lib.generators.toYAML {} {
|
|
# templates = {
|
|
# scm-init = "git";
|
|
# params = with config.programs.git; {
|
|
# author-name = userName;
|
|
# author-email = userEmail;
|
|
# github-username = userName;
|
|
# };
|
|
# };
|
|
# nix.enable = true;
|
|
# };
|
|
}
|