reorganize

This commit is contained in:
2024-02-27 10:52:11 -05:00
parent ccecea715c
commit 30cba6caf1
13 changed files with 120 additions and 40 deletions

18
hosts/macbook/home.nix Normal file
View File

@@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
imports = [
../../modules/home-manager/wezterm
];
home.username = "mthomson";
home.homeDirectory = "/Users/mthomson";
home.stateVersion = "23.11";
home.packages = with pkgs; [
hello
cowsay
];
programs.home-manager.enable = true;
programs.git.enable = true;
}