51 lines
720 B
Nix
51 lines
720 B
Nix
{ den, lux, ... }:
|
|
{
|
|
lux.bundles._.local-session = {
|
|
includes = with lux; [
|
|
nix
|
|
region-nl
|
|
sddm
|
|
niri
|
|
audio
|
|
bluetooth
|
|
clipboard
|
|
flatpak
|
|
fonts
|
|
local-apps
|
|
networking
|
|
pinentry
|
|
printing
|
|
qbittorrent-client
|
|
system-base
|
|
vicinae
|
|
xdg
|
|
theme
|
|
noctalia
|
|
];
|
|
};
|
|
|
|
lux.bundles._.local-session-user = {
|
|
includes = with lux; [
|
|
nix
|
|
niri
|
|
clipboard
|
|
local-apps
|
|
pinentry
|
|
qbittorrent-client
|
|
vicinae
|
|
xdg
|
|
theme
|
|
noctalia
|
|
];
|
|
};
|
|
|
|
lux.bundles._.development = {
|
|
includes = with lux; [
|
|
git
|
|
dev-tools
|
|
podman
|
|
gemini
|
|
];
|
|
};
|
|
}
|