nix-config/common.nix
2020-02-28 17:12:48 +01:00

17 lines
255 B
Nix

{ config, pkgs, ... }:
{
imports = [
./vim
./fish.nix
./tmux.nix
(import ./termite.nix {
config = config;
pkgs = pkgs;
colors = import ./colors.nix;
})
./gpg.nix
./ssh.nix
./git.nix
./gtk.nix
];
}