summaryrefslogtreecommitdiff
path: root/modules/home-manager/personal/environment.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/personal/environment.nix')
-rw-r--r--modules/home-manager/personal/environment.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/home-manager/personal/environment.nix b/modules/home-manager/personal/environment.nix
new file mode 100644
index 0000000..3d29db1
--- /dev/null
+++ b/modules/home-manager/personal/environment.nix
@@ -0,0 +1,20 @@
+{ config, lib, pkgs, ... }:
+
+{
+ home.packages = with pkgs; [ coreutils moreutils ];
+ personal.home.wallpaper = lib.mkDefault config.personal.home.dotfiles.wallpaper;
+
+ programs.bash = {
+ enable = lib.mkDefault true;
+ };
+
+ home = {
+ shellAliases = {
+ amimullvad = "curl -Ls https://am.i.mullvad.net/connected";
+ rm = "rm -f";
+ ssh = "TERM=xterm-256color ssh";
+ edit = "$EDITOR";
+ };
+ sessionVariables = { CDPATH = "~"; };
+ };
+}