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/tahoe/home.nix | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) (limited to 'hosts/tahoe') diff --git a/hosts/tahoe/home.nix b/hosts/tahoe/home.nix index c58d0d4..9177e59 100644 --- a/hosts/tahoe/home.nix +++ b/hosts/tahoe/home.nix @@ -1,26 +1,8 @@ -{ pkgs, ... }: +{ pkgs, self, ... }: { - my.home = { - # default packages I want on all hosts - packages.enable = true; - - # terminal - shell.name = "zsh"; - ssh.enable = true; - tmux.enable = true; - - # software development - git.enable = true; - - # multimedia - beets = { - enable = true; - musicDirectory = "/data/fast/music"; - }; - flac.enable = true; - - # web - yt-dlp.enable = true; - }; + imports = [ + "${self}/home/profiles/home.nix" + "${self}/home/profiles/nas.nix" + ]; } -- cgit v1.2.3