dotfiles/home.nix

28 lines
800 B
Nix
Raw Normal View History

2023-07-26 13:04:43 -04:00
{ pkgs, ... }: {
2020-11-11 08:15:50 -05:00
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "walkah";
home.homeDirectory = if pkgs.stdenv.isDarwin then "/Users/walkah" else "/home/walkah";
2020-11-11 08:15:50 -05:00
2022-08-27 10:57:48 -04:00
imports = [
./modules
2021-10-05 21:11:23 -04:00
];
2020-11-11 08:15:50 -05:00
programs = {
vim = { enable = true; };
};
2020-11-11 08:15:50 -05:00
# 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.
2023-02-20 13:38:28 -05:00
home.stateVersion = "23.05";
2020-11-11 08:15:50 -05:00
}