dotfiles/.config/nixpkgs/home.nix

41 lines
913 B
Nix

{ config, pkgs, ... }:
let
# Be able to use unstable packages
pkgsUnstable = import <nixpkgs-unstable> {};
in
{ # Required
programs.home-manager.enable = true;
home.username = "earne";
home.homeDirectory = "/home/earne";
home.packages = with pkgs; [
barrier
pkgsUnstable.discord
pkgsUnstable.zoom-us
# Doom Emacs + dependencies
pkgsUnstable.fd
pkgsUnstable.ripgrep
pkgsUnstable.emacs
alacritty
gitFull
ghq
pkgsUnstable.neovim
tmux
yadm
];
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.05";
}