nest-home/home.nix

34 lines
377 B
Nix
Raw Normal View History

2024-08-16 08:31:35 +00:00
{ configs, pkgs, ... }:
{
2024-08-16 08:22:12 +00:00
2024-08-16 08:54:22 +00:00
imports = [
./redis/.nix
];
2024-08-16 08:22:12 +00:00
home.username = "vic";
home.homeDirectory = "/home/vic";
home.packages = [
2024-08-16 08:44:22 +00:00
pkgs.helix #editor
pkgs.bat #modern cat
2024-08-16 08:27:03 +00:00
];
2024-08-16 08:22:12 +00:00
home.stateVersion = "24.05";
home.sessionVariables = {
EDITOR = "hx";
VISUAL = "hx";
PAGER = "less";
};
programs.home-manager.enable = true;
2024-08-16 08:31:35 +00:00
}