move to mkModuleTree for host configuration

This commit is contained in:
Charlie Root 2024-09-08 20:35:33 +02:00
commit 3c4bf8040c
13 changed files with 42 additions and 31 deletions

View file

@ -91,7 +91,10 @@
in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
home.packages = [custom-emacs];
home.packages = with pkgs; [
custom-emacs
clang-tools
];
services.emacs = {
enable = true;

View file

@ -3,6 +3,7 @@
inherit (config.modules.other.system) username;
in {
home-manager.users.${username} = {
imports = [./default.nix];
home.pointerCursor = {
# inherit the default values set in the options,
# since these are the once I need on all my systems.

View file

@ -1 +0,0 @@
_: {imports = [./bluetooth.nix ./graphics.nix];}

View file

@ -0,0 +1 @@
_: {imports = [./bluetooth.nix ./graphics.nix];}