nix-managed-macbook/home.nix

22 lines
395 B
Nix
Raw Normal View History

2022-09-25 00:54:06 +05:30
{ config, pkgs, ... }:
{
2022-09-27 13:08:52 +05:30
imports = [ ./programs ./launchd.nix ./nix.nix ];
2022-09-25 00:54:06 +05:30
home.username = "abhinav";
home.homeDirectory = "/Users/abhinav";
home.stateVersion = "22.05";
2022-09-26 19:12:14 +05:30
home.enableNixpkgsReleaseCheck = true;
2022-09-26 23:51:11 +05:30
home.shellAliases = {
j = "just";
g = "git";
l = "bat";
m = "micro";
du = "dua interactive";
};
home.sessionVariables = { EDITOR = "micro"; };
2022-09-25 00:54:06 +05:30
}