22 lines
303 B
Nix
22 lines
303 B
Nix
{ config, pkgs, osConfig, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./cli.nix
|
|
./desktop.nix
|
|
];
|
|
|
|
cli.editor = "nvim";
|
|
cli.file-browser = "yazi";
|
|
|
|
home.persistence."/persist/home/rafiq" = {
|
|
directories = [
|
|
".ssh"
|
|
".config/sops/age"
|
|
"repos"
|
|
];
|
|
allowOther = true;
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|