This commit is contained in:
2026-03-03 16:30:58 +01:00
parent 5f34d32807
commit 6a49646d5e
34 changed files with 1229 additions and 1044 deletions

View File

@@ -2,7 +2,7 @@
{
lux.xdg = {
homeManager =
{ config, ... }:
{ config, pkgs, ... }:
let
homeDir = config.home.homeDirectory;
localDir = "${homeDir}/.local";
@@ -34,6 +34,24 @@
publicShare = "${localDir}/public";
templates = "${localDir}/templates";
};
mimeApps = {
enable = true;
defaultApplicationPackages = with pkgs; [
sioyek
vivaldi
neovim
];
};
terminal-exec = {
enable = true;
settings = {
default = [
"kitty.desktop"
];
};
};
};
};
};