33 lines
644 B
Nix
33 lines
644 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|