aboutsummaryrefslogtreecommitdiff
path: root/hosts/carmel
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-05 19:41:58 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-05 19:41:58 -0700
commit43da9edb4598eef509c481ae0b305384418c45de (patch)
treea0ad614c90102757143e026e4fe1806431a3dbf4 /hosts/carmel
parentprofiles/default: users are immutable (diff)
downloadinfra-43da9edb4598eef509c481ae0b305384418c45de.tar.gz
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.
Diffstat (limited to 'hosts/carmel')
-rw-r--r--hosts/carmel/home.nix16
1 files changed, 4 insertions, 12 deletions
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"
+ ];
}