diff options
author | Alan Pearce | 2019-10-01 22:10:10 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-01 22:17:40 +0200 |
commit | 97410ae054ab7f1d891644d2da5f14ad7a8e813a (patch) | |
tree | c7ed48c59205af213561bd265c6997c0fc3b5878 | |
parent | b710b6058767cf1d7c780f7e93aea6f52ad021c5 (diff) | |
download | dotfiles-97410ae054ab7f1d891644d2da5f14ad7a8e813a.tar.lz dotfiles-97410ae054ab7f1d891644d2da5f14ad7a8e813a.tar.zst dotfiles-97410ae054ab7f1d891644d2da5f14ad7a8e813a.zip |
Create initial configuration for prefect
-rw-r--r-- | prefect.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/prefect.nix b/prefect.nix new file mode 100644 index 0000000..a1edc55 --- /dev/null +++ b/prefect.nix @@ -0,0 +1,18 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ./modules/base.nix + ./modules/dunst.nix + ./modules/emacs.nix + ./modules/git.nix + ./modules/gnupg.nix + ./modules/i3.nix + ./modules/nix.nix + ./modules/rofi.nix + ./modules/sxhkd.nix + ./modules/tabnine.nix + ./modules/xresources.nix + ./modules/zsh.nix + ]; +} |