refactor: move graphical applications to a separate bundle

this facilitates lean clients, e.g. a laptop with only a virutal console
This commit is contained in:
wi11-holdsworth 2026-01-06 12:30:26 +11:00
parent 20372363f5
commit f2b6808c93
10 changed files with 45 additions and 24 deletions

View file

@ -5,10 +5,9 @@
{
imports = util.toImports ../features [
# keep-sorted start
"firefox"
"kitty"
"obsidian"
"zen-browser"
"aerc"
"mail"
"zellij"
# keep-sorted end
];
}

View file

@ -0,0 +1,14 @@
{
util,
...
}:
{
imports = util.toImports ../features [
# keep-sorted start
"firefox"
"kitty"
"obsidian"
"zen-browser"
# keep-sorted end
];
}