Files
nixos/machines/desktop/home.nix
T
2023-08-11 18:57:56 -04:00

12 lines
152 B
Nix

{ pkgs, ... }:
{
imports = [
../../modules/home/git.nix
../../modules/home/zsh.nix
];
modules.git.enable = true;
modules.zsh.enable = true;
}