Skip to content

Commit 55f562e

Browse files
committed
refactor(tty): move ai-nixCfg configurations & viewers to tty
1 parent 273c481 commit 55f562e

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

home/tools/default.nix

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
{
2-
lib,
3-
inputs,
4-
...
5-
}: {
6-
imports =
7-
(lib.custom.scanPaths ./.)
8-
++ [
9-
inputs.ai-nixCfg.homeManagerConfigurations.default
10-
];
1+
{lib, ...}: {
2+
imports = lib.custom.scanPaths ./.;
113
}

home/tty/default.nix

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1-
{lib, ...}: {
2-
imports = lib.custom.scanPaths ./.;
1+
{
2+
lib,
3+
inputs,
4+
...
5+
}: {
6+
imports =
7+
(lib.custom.scanPaths ./.)
8+
++ [
9+
inputs.ai-nixCfg.homeManagerConfigurations.default
10+
];
311
}

0 commit comments

Comments
 (0)