15 lines
313 B
Nix
15 lines
313 B
Nix
{ config, pkgs, lib, inputs, ... }:
|
|
{
|
|
|
|
home.username = "bangae1";
|
|
home.homeDirectory = "/home/bangae1";
|
|
home.stateVersion = "25.11";
|
|
|
|
xdg.configFile."mango" = {
|
|
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/mango/hm/mango";
|
|
recursive = true;
|
|
force = true;
|
|
};
|
|
|
|
}
|