Evie Litherland-Smith
763a1d2a05
Place home-manager config under home directory, move system config under system directory. Add hostname-specific entries under home directory to be consistent with how system is configured, update flake accordingly
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";
|
|
};
|
|
};
|
|
};
|
|
}
|