From d98e47cbcfcdbe202f5b338cf70f5951a01237a4 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Mon, 23 Oct 2023 14:51:21 -0400 Subject: fix(grfn/home): Fix home build for darwin Change-Id: Ibcf21617a1cee66c157644712918bcd9bb390228 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9827 Tested-by: BuildkiteCI Reviewed-by: grfn --- users/grfn/system/home/machines/dobharchu.nix | 5 ++++- users/grfn/system/home/modules/common.nix | 6 +----- users/grfn/system/home/modules/development.nix | 6 +++--- users/grfn/system/home/modules/development/rust.nix | 6 +++++- users/grfn/system/home/modules/twitter.nix | 4 ++++ users/grfn/system/home/platforms/linux.nix | 4 ++++ 6 files changed, 21 insertions(+), 10 deletions(-) (limited to 'users/grfn') diff --git a/users/grfn/system/home/machines/dobharchu.nix b/users/grfn/system/home/machines/dobharchu.nix index 0b8503a00e..c26f3baef1 100644 --- a/users/grfn/system/home/machines/dobharchu.nix +++ b/users/grfn/system/home/machines/dobharchu.nix @@ -4,7 +4,7 @@ imports = [ ../platforms/darwin.nix ../modules/common.nix - ../modules/games.nix + # ../modules/games.nix ]; home.packages = with pkgs; [ @@ -14,4 +14,7 @@ pass pinentry_mac ]; + + programs.home-manager.enable = true; + home.stateVersion = "21.11"; } diff --git a/users/grfn/system/home/modules/common.nix b/users/grfn/system/home/modules/common.nix index 7714644841..17d58a36c5 100644 --- a/users/grfn/system/home/modules/common.nix +++ b/users/grfn/system/home/modules/common.nix @@ -6,7 +6,7 @@ { imports = [ ../modules/shell.nix - ../modules/development.nix + # ../modules/development.nix ../modules/emacs.nix ../modules/vim.nix ../modules/tarsnap.nix @@ -118,8 +118,4 @@ enableBashIntegration = true; enableZshIntegration = true; }; - - services.dropbox = { - enable = true; - }; } diff --git a/users/grfn/system/home/modules/development.nix b/users/grfn/system/home/modules/development.nix index d67c83e530..f08e9d9492 100644 --- a/users/grfn/system/home/modules/development.nix +++ b/users/grfn/system/home/modules/development.nix @@ -58,7 +58,6 @@ with lib; lldb hyperfine clang-tools_11 - rr clj2nix clojure @@ -68,13 +67,14 @@ with lib; pg-dump-upsert nodePackages.prettier - - linuxPackages.perf ] ++ optionals (stdenv.isLinux) [ # TODO(grfn): replace with stable again once the current julia debacle # is resolved upstream, see https://github.com/NixOS/nixpkgs/pull/121114 julia_16-bin valgrind + + linuxPackages.perf + rr ]; programs.git = { diff --git a/users/grfn/system/home/modules/development/rust.nix b/users/grfn/system/home/modules/development/rust.nix index 9ed42f5d2d..105a23bc83 100644 --- a/users/grfn/system/home/modules/development/rust.nix +++ b/users/grfn/system/home/modules/development/rust.nix @@ -3,13 +3,15 @@ let inherit (config.lib) depot; in + +with lib; + { home.packages = with pkgs; [ rustup cargo-edit cargo-expand - cargo-rr cargo-udeps cargo-bloat sccache @@ -24,6 +26,8 @@ in coz inferno hotspot + ] ++ optionals (stdenv.isLinux) [ + cargo-rr ]; programs.zsh.shellAliases = { diff --git a/users/grfn/system/home/modules/twitter.nix b/users/grfn/system/home/modules/twitter.nix index 3cb2e90adc..ab5647e418 100644 --- a/users/grfn/system/home/modules/twitter.nix +++ b/users/grfn/system/home/modules/twitter.nix @@ -1,6 +1,10 @@ { pkgs, lib, ... }: { + imports = [ + ./lib/zshFunctions.nix + ]; + home.packages = with pkgs; [ t ]; diff --git a/users/grfn/system/home/platforms/linux.nix b/users/grfn/system/home/platforms/linux.nix index 5429f3e094..f1a9e179bd 100644 --- a/users/grfn/system/home/platforms/linux.nix +++ b/users/grfn/system/home/platforms/linux.nix @@ -81,4 +81,8 @@ in ''; services.lorri.enable = true; + + services.dropbox = { + enable = true; + }; } -- cgit 1.4.1