System/home-manager/common.nix

12 lines
148 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
imports = [
./ssh.nix
./git.nix
./fish.nix
2022-06-10 17:26:12 -04:00
./bat.nix
];
programs.home-manager.enable = true;
}