nix-config/modules/common.nix
2020-08-01 15:46:33 +02:00

26 lines
409 B
Nix

{ config, pkgs, ... }:
let
colors = import ./colors.nix;
in {
imports = [
./vim
./tmux.nix
./zsh.nix
(import ./termite.nix {
config = config;
pkgs = pkgs;
colors = colors;
})
./gpg.nix
./ssh.nix
./git.nix
./gtk.nix
./xdg.nix
(import ./mako.nix {
config = config;
pkgs = pkgs;
colors = colors;
})
./keyring.nix
];
}