Relocated cli tooling

This commit is contained in:
James Patrick 2022-03-04 22:25:57 -05:00
parent da10937ed1
commit 0699cc4807
4 changed files with 10 additions and 10 deletions

View File

@ -5,11 +5,5 @@
description = "Does this actually need X/Wayland"; description = "Does this actually need X/Wayland";
}; };
imports = [ imports = [ ./applications ./lang ./system ];
./system
./applications
./lang
# TODO Refactor everything after this.
./cli.nix
];
} }

View File

@ -2,7 +2,6 @@
imports = [ imports = [
../applications/firefox.nix ../applications/firefox.nix
../applications/nextcloud.nix ../applications/nextcloud.nix
../cli.nix
../system/gtk.nix ../system/gtk.nix
./minimal.nix ./minimal.nix
]; ];

View File

@ -1,4 +1,11 @@
{ config, pkgs, ... }: { { config, pkgs, ... }: {
imports = imports = [
[ ./gtk.nix ./boot.nix ./xdg.nix ./flatpak.nix ./zfs.nix ./fonts.nix ]; ./boot.nix
./cli.nix
./flatpak.nix
./fonts.nix
./gtk.nix
./xdg.nix
./zfs.nix
];
} }