- `foot` fonts and background color - `helix` editor - `pass` related aliases in shell - `nix-index` automatic update - `sway`/`waybar` changes - new `beebox` host - `kodi` module - `coredns` for `hs`
23 lines
269 B
Nix
23 lines
269 B
Nix
{
|
|
fleetModules,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
]
|
|
++ fleetModules [
|
|
"common"
|
|
"ssh"
|
|
"ccr"
|
|
"audio"
|
|
"dbus"
|
|
"bluetooth"
|
|
"kodi"
|
|
"udisks2"
|
|
];
|
|
|
|
ccr.enable = true;
|
|
}
|