summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-07-29 01:56:19 -0400
committerBen Sima <ben@bsima.me>2022-07-29 01:56:52 -0400
commit7569c08ffc4de1fa5433e04aa15a5d25161826e1 (patch)
tree061c8ed3bfbb675e8df5975dc537b56e16d97daf /profiles
parent0cf1950d364fced5e63c56add1ee15afc4eddea1 (diff)
install on cloud
Diffstat (limited to 'profiles')
-rw-r--r--profiles/cloud.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/profiles/cloud.nix b/profiles/cloud.nix
new file mode 100644
index 0000000..115eaeb
--- /dev/null
+++ b/profiles/cloud.nix
@@ -0,0 +1,15 @@
+{ pkgs, lib, ... }:
+
+let
+ homedir = builtins.getEnv "HOME";
+in {
+ imports = [
+ ../lib/common.nix
+ ../lib/emacs.nix
+ ../lib/ssh.nix
+ ../lib/packages.nix
+ ];
+
+ programs.emacs.enable = true;
+ services.emacs.enable = true;
+}