diff options
-rw-r--r-- | satoshipad.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/satoshipad.nix b/satoshipad.nix new file mode 100644 index 0000000..eab836d --- /dev/null +++ b/satoshipad.nix @@ -0,0 +1,23 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ./modules/autorandr.nix + ./modules/base.nix + ./modules/dunst.nix + ./modules/emacs.nix + ./modules/git.nix + ./modules/gnupg.nix + ./modules/i3.nix + ./modules/isync.nix + ./modules/msmtp.nix + ./modules/nix.nix + ./modules/npm.nix + ./modules/rofi.nix + ./modules/sxhkd.nix + ./modules/tabnine.nix + ./modules/trezor.nix + ./modules/xresources.nix + ./modules/zsh.nix + ]; +} |