nixos/home/desktop/default.nix

33 lines
644 B
Nix
Raw Normal View History

{
config,
pkgs,
...
}: {
imports = [./plasma/default.nix];
home.packages = with pkgs; [
libreoffice-fresh
inkscape
webcord
kdePackages.krdc
];
services.syncthing.enable = true;
programs.mpv.enable = true;
xdg = {
mime.enable = true;
mimeApps = let
defaultApplications = import ./mimeapps.nix;
in {
enable = true;
inherit defaultApplications;
associations.added = defaultApplications;
};
userDirs = {
enable = true;
createDirectories = true;
extraConfig = {
XDG_PROJECTS_DIR = "${config.home.homeDirectory}/Projects";
};
};
};
}