dotfiles.nix/home.nix

34 lines
815 B
Nix

{ config, pkgs, ... }:
{
imports = [
./configs/main.nix
];
# 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 = "22.05";
home.username = "willem";
home.homeDirectory = "/Users/willem";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
nix = {
package = pkgs.nix;
settings.experimental-features = [ "nix-command" ];
};
home.packages = with pkgs; [
htop
wget
texlive.combined.scheme-full
];
}