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";
};
imports = [
./system
./applications
./lang
# TODO Refactor everything after this.
./cli.nix
];
imports = [ ./applications ./lang ./system ];
}

View File

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

View File

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