home: add XDG

This commit is contained in:
Bruno BELANYI 2021-02-21 19:30:21 +00:00
parent a65b7202b1
commit 547d5a5e86
2 changed files with 13 additions and 0 deletions

View file

@ -13,6 +13,7 @@
./secrets # Home-manager specific secrets
./ssh.nix
./tmux.nix
./xdg.nix
./zsh
];
}

12
home/xdg.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
{
xdg = {
enable = true;
# File types
mime.enable = true;
# File associatons
mimeApps = {
enable = true;
};
};
}