11 lines
134 B
Nix
11 lines
134 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./ssh.nix
|
||
|
./fish.nix
|
||
|
./git.nix
|
||
|
];
|
||
|
programs.home-manager.enable = true;
|
||
|
}
|