mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
34 lines
815 B
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
|
|
];
|
|
}
|