17 lines
255 B
Nix
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
|
|
];
|
|
}
|