From 7281f05669e92e3568f837591912350b32951555 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 30 Dec 2025 10:33:31 -0800 Subject: organize programs in a way that makes sense to me --- home/profiles/mac.nix | 70 --------------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 home/profiles/mac.nix (limited to 'home/profiles/mac.nix') diff --git a/home/profiles/mac.nix b/home/profiles/mac.nix deleted file mode 100644 index 2aa369f..0000000 --- a/home/profiles/mac.nix +++ /dev/null @@ -1,70 +0,0 @@ -{ pkgs, config, ... }: -let - inherit (config.home) username; -in -{ - age = { - identityPaths = [ "${config.home.homeDirectory}/.ssh/agenix" ]; - secretsDir = "${config.home.homeDirectory}/.local/share/agenix"; - }; - - imports = [ - ./direnv.nix - ./eza.nix - ./fd.nix - ./fish.nix - ./git.nix - ./go.nix - ./kitty.nix - ./onepassword.nix - ./ssh.nix - ./starship.nix - ../programs/emacs - ../programs/firefox - ]; - - home.homeDirectory = "/Users/${username}"; - - programs.bat.enable = true; - - home.packages = with pkgs; [ - age - aider-chat - bandwhich - bottom - coreutils - delve - dive # explore layers in docker images - docker - docker-credential-helpers - dust - fish - jless - jq - nil # nix lsp - nix-direnv # integration with direnv - nixfmt-rfc-style # new formatter - procs - restic - ripgrep - shellcheck - tree - wget - wireshark - yq - yubikey-manager - ]; - - home.sessionVariables = { - LESS = "-FRSXM"; - LESSCHARSET = "utf-8"; - PAGER = "less"; - SHELL = "${pkgs.fish}/bin/fish"; - }; - - home.sessionPath = [ - "${config.home.homeDirectory}/.local/bin" - ]; - - xdg.enable = true; -} -- cgit v1.2.3