Adding defaults targets

This commit is contained in:
James Patrick 2021-12-13 01:13:05 -05:00
parent 777af5eca1
commit a8d18138a3
4 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,3 @@
{ config, pkgs, ... }: {
imports = [ ./firefox.nix ./mako.nix ./nextcloud.nix ./waybar.nix ];
}

11
modules/default.nix Normal file
View File

@ -0,0 +1,11 @@
{ config, pkgs, ... }: {
imports = [
./system
./applications
# TODO Refactor everything after this.
./boot.nix
./cli.nix
./fonts.nix
./zfs.nix
];
}

View File

@ -6,7 +6,7 @@ let
sha256 = "sha256-Btjo+v/xA26CwwFauNmSdJOauIq/yZoBV1Com39nu6E=";
};
in {
imports = [ ../system/xdg.nix ];
imports = [ ../. ../system/xdg.nix ];
# Allow Cleanup, nix, & flakes
nix = {
autoOptimiseStore = true;

View File

@ -0,0 +1 @@
{ config, pkgs, ... }: { imports = [ ./gtk.nix ./xdg.nix ]; }