aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/desktop/xdg.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/desktop/xdg.nix')
-rw-r--r--users/fcuny/desktop/xdg.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/users/fcuny/desktop/xdg.nix b/users/fcuny/desktop/xdg.nix
deleted file mode 100644
index 44a5ce1..0000000
--- a/users/fcuny/desktop/xdg.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
- home.packages = [
- pkgs.xdg-user-dirs
- ];
-
- xdg = {
- enable = true;
-
- mimeApps = {
- enable = true;
- };
-
- userDirs = {
- enable = true;
- createDirectories = true;
- desktop = "${config.home.homeDirectory}/documents";
- documents = "${config.home.homeDirectory}/documents";
- download = "${config.home.homeDirectory}/downloads";
- music = "${config.home.homeDirectory}/media/music";
- pictures = "${config.home.homeDirectory}/media/pictures";
- publicShare = "${config.home.homeDirectory}/documents/public";
- templates = "${config.home.homeDirectory}/documents/templates";
- videos = "${config.home.homeDirectory}/media/videos";
- };
- };
-}