diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2023-02-22 22:39:56 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2023-02-28 17:47:49 +0100 |
| commit | 70d60e5ee6d1092f765807b8483c9c16d2afa678 (patch) | |
| tree | edeb7a91de348d6fc5dd0e43b9ca7bef794b322c /modules/home-manager/personal/environment.nix | |
| parent | bbb2f5e7cefb970b3e4994ee51bb2c3a18a073c2 (diff) | |
add home-manager modules
Diffstat (limited to 'modules/home-manager/personal/environment.nix')
| -rw-r--r-- | modules/home-manager/personal/environment.nix | 20 |
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 = "~"; }; + }; +} |
