Cleanup
This commit is contained in:
parent
b7b348c163
commit
3d86adb45f
41 changed files with 124 additions and 81 deletions
26
modules/common.nix
Normal file
26
modules/common.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue