Adding defaults targets
This commit is contained in:
parent
777af5eca1
commit
a8d18138a3
3
modules/applications/default.nix
Normal file
3
modules/applications/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{ config, pkgs, ... }: {
|
||||||
|
imports = [ ./firefox.nix ./mako.nix ./nextcloud.nix ./waybar.nix ];
|
||||||
|
}
|
11
modules/default.nix
Normal file
11
modules/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, pkgs, ... }: {
|
||||||
|
imports = [
|
||||||
|
./system
|
||||||
|
./applications
|
||||||
|
# TODO Refactor everything after this.
|
||||||
|
./boot.nix
|
||||||
|
./cli.nix
|
||||||
|
./fonts.nix
|
||||||
|
./zfs.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -6,7 +6,7 @@ let
|
||||||
sha256 = "sha256-Btjo+v/xA26CwwFauNmSdJOauIq/yZoBV1Com39nu6E=";
|
sha256 = "sha256-Btjo+v/xA26CwwFauNmSdJOauIq/yZoBV1Com39nu6E=";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
imports = [ ../system/xdg.nix ];
|
imports = [ ../. ../system/xdg.nix ];
|
||||||
# Allow Cleanup, nix, & flakes
|
# Allow Cleanup, nix, & flakes
|
||||||
nix = {
|
nix = {
|
||||||
autoOptimiseStore = true;
|
autoOptimiseStore = true;
|
||||||
|
|
1
modules/system/default.nix
Normal file
1
modules/system/default.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ config, pkgs, ... }: { imports = [ ./gtk.nix ./xdg.nix ]; }
|
Reference in New Issue
Block a user