From 3eacfcb9a71997ad88eb2c6a9033083d994fe65d Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sun, 4 Sep 2022 11:29:37 -0700 Subject: [PATCH] Update TODO --- TODO.org | 1 + nix/home.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/TODO.org b/TODO.org index 34fc13d..5fcb038 100644 --- a/TODO.org +++ b/TODO.org @@ -22,6 +22,7 @@ https://sw.kovidgoyal.net/kitty/actions/#action-toggle-layout ** Cheatsheet popup shortcuts ** Easier shortcuts to resize panes ctrl+shift+arrows +** ssh wrapper * Shell ** Aliases to auto-deploy templates for python/nix direnv ** my own version of "hey" diff --git a/nix/home.nix b/nix/home.nix index e795efb..b823c4a 100644 --- a/nix/home.nix +++ b/nix/home.nix @@ -1,6 +1,7 @@ { config, pkgs, lib, ... }: { home.stateVersion = "22.05"; + # TODO - ask for sanity check home.homeDirectory = if lib.strings.hasInfix "darwin" pkgs.system then /Users/${config.home.username} else /home/${config.home.username};