aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/mac.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-12-30 10:33:31 -0800
committerFranck Cuny <franck@fcuny.net>2025-12-30 11:33:46 -0800
commit7281f05669e92e3568f837591912350b32951555 (patch)
tree61964e392409ab188599af47e58d9a9154ab33ce /home/profiles/mac.nix
parentinstall mkv related tools (diff)
downloadinfra-7281f05669e92e3568f837591912350b32951555.tar.gz
organize programs in a way that makes sense to me
Diffstat (limited to 'home/profiles/mac.nix')
-rw-r--r--home/profiles/mac.nix70
1 files changed, 0 insertions, 70 deletions
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;
-}