1
Fork 0
nixos-system-config/users/blank/home-manager/home.nix
caem 62a2c850ae
Add support for non-nixos systems
I run Debian on my Thinkpad and wanted to take advantage of nix on there
without also installing NixOS there, so here is added support for it.
2024-06-06 12:41:31 +02:00

30 lines
507 B
Nix

{ config, pkgs, ... }:
{
home.username = "blank";
home.homeDirectory = "/home/blank";
home.stateVersion = "24.05";
/*
home.packages = with pkgs; [
nvim
];
*/
home.file.".zshenv" = {
text = "source ~/.nix-profile/etc/profile.d/hm-session-vars.sh";
};
home.sessionVariables = {
EDITOR = "nvim";
ZDOTDIR = "${config.xdg.configHome}/zsh";
};
imports = [
./packages/nvim/neovim.nix
./packages/zsh/zsh-home.nix
];
programs.home-manager.enable = true;
}