2024-04-05 01:38:57 +02:00
|
|
|
{ config, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (config.home) homeDirectory;
|
|
|
|
in
|
2023-06-22 17:00:39 +02:00
|
|
|
{
|
2024-07-14 15:20:48 +02:00
|
|
|
xdg = {
|
|
|
|
desktopEntries = {
|
|
|
|
htop = {
|
|
|
|
name = "htop";
|
|
|
|
noDisplay = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
fish = {
|
|
|
|
name = "fish";
|
|
|
|
noDisplay = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nvim = {
|
|
|
|
name = "nvim";
|
|
|
|
noDisplay = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
yazi = {
|
|
|
|
name = "yazi";
|
|
|
|
noDisplay = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
tectonic = {
|
|
|
|
name = "tectonic";
|
|
|
|
noDisplay = true;
|
|
|
|
};
|
|
|
|
};
|
2023-06-02 23:39:51 +02:00
|
|
|
|
2024-07-14 15:20:48 +02:00
|
|
|
userDirs = {
|
|
|
|
enable = true;
|
|
|
|
createDirectories = true;
|
|
|
|
|
|
|
|
desktop = null;
|
|
|
|
templates = null;
|
|
|
|
publicShare = null;
|
|
|
|
|
|
|
|
download = "${homeDirectory}/ダウンロード";
|
|
|
|
documents = "${homeDirectory}/ドキュメント";
|
|
|
|
music = "${homeDirectory}/音楽";
|
|
|
|
pictures = "${homeDirectory}/画像";
|
|
|
|
videos = "${homeDirectory}/ビデオ";
|
|
|
|
};
|
|
|
|
|
|
|
|
configFile."user-dirs.locale".text = "ja_JP";
|
|
|
|
};
|
2023-05-17 01:10:15 +02:00
|
|
|
}
|