From 43da9edb4598eef509c481ae0b305384418c45de Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 5 May 2023 19:41:58 -0700 Subject: home/profiles: move (almost) all modules to profiles This is a major refactor, similar to what was done for the hosts, but in a single commit. --- hosts/carmel/home.nix | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'hosts/carmel') diff --git a/hosts/carmel/home.nix b/hosts/carmel/home.nix index eb6c9ab..6fb5fc2 100644 --- a/hosts/carmel/home.nix +++ b/hosts/carmel/home.nix @@ -1,14 +1,6 @@ -{ ... }: { - my.home = { - # default packages I want on all hosts - packages.enable = true; +{ self, ... }: { - # terminal - shell.name = "zsh"; - ssh.enable = true; - tmux.enable = true; - - # software development - git.enable = true; - }; + imports = [ + "${self}/home/modules/home.nixhome" + ]; } -- cgit 1.4.1