25 lines
310 B
Nix
25 lines
310 B
Nix
{ config, pkgs, osConfig, ... }:
|
|
|
|
{
|
|
home.stateVersion = "24.11";
|
|
|
|
home.packages = with pkgs; [
|
|
git
|
|
neovim
|
|
ripgrep
|
|
];
|
|
|
|
home.file = {
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
home.persistence."/persist/home/rafiq" = {
|
|
directories = [
|
|
".ssh"
|
|
];
|
|
allowOther = true;
|
|
};
|
|
}
|