2023-07-26 13:04:43 -04:00
|
|
|
{ pkgs, ... }: {
|
2020-11-11 13:15:50 +00: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.
|
2023-10-13 21:27:42 -04:00
|
|
|
home = {
|
|
|
|
username = "walkah";
|
|
|
|
homeDirectory = if pkgs.stdenv.isDarwin then "/Users/walkah" else "/home/walkah";
|
|
|
|
};
|
2020-11-11 13:15:50 +00:00
|
|
|
|
2022-08-27 10:57:48 -04:00
|
|
|
imports = [
|
|
|
|
./modules
|
2021-10-05 21:11:23 -04:00
|
|
|
];
|
2020-11-15 14:50:49 +00:00
|
|
|
|
2020-11-11 13:15:50 +00:00
|
|
|
programs = {
|
2020-12-21 19:41:29 -05:00
|
|
|
vim = { enable = true; };
|
|
|
|
};
|
2020-11-23 22:09:23 -05:00
|
|
|
|
2020-11-11 13:15:50 +00: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 13:15:50 +00:00
|
|
|
}
|