diff --git a/nix/home-manager/flake.lock b/nix/home-manager/flake.lock index bdd66ad..4d3e5ac 100644 --- a/nix/home-manager/flake.lock +++ b/nix/home-manager/flake.lock @@ -82,11 +82,11 @@ ] }, "locked": { - "lastModified": 1683221986, - "narHash": "sha256-n688GK4wO2pZpI4gHOxj/PF85bzUMPEJ8B3Wd3cHSjk=", + "lastModified": 1683276742, + "narHash": "sha256-QURv/m81hd6TN5RMjlSHhE1zLpXHsvDEm66qv3MRBsM=", "owner": "nix-community", "repo": "home-manager", - "rev": "f3824311a16cbe70dbaeedc17a97dfcd11901c3f", + "rev": "38271ead8e7b291beb9d3b8312e66c3268796c0a", "type": "github" }, "original": { @@ -205,11 +205,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1683014792, - "narHash": "sha256-6Va9iVtmmsw4raBc3QKvQT2KT/NGRWlvUlJj46zN8B8=", + "lastModified": 1683286087, + "narHash": "sha256-xseOd7W7xwF5GOF2RW8qhjmVGrKoBz+caBlreaNzoeI=", "owner": "nixos", "repo": "nixpkgs", - "rev": "1a411f23ba299db155a5b45d5e145b85a7aafc42", + "rev": "3e313808bd2e0a0669430787fb22e43b2f4bf8bf", "type": "github" }, "original": { diff --git a/nix/home-manager/home.nix b/nix/home-manager/home.nix index 52468dd..b529c2d 100644 --- a/nix/home-manager/home.nix +++ b/nix/home-manager/home.nix @@ -73,6 +73,22 @@ enable = true; nix-direnv.enable = true; }; + programs.git = { + enable = false; + # TODO + }; + programs.gh = { + enable = false; + # TODO + }; + + programs.neovim = { + enable = false; + # TODO + # init.lua + # fnl dir + # undodir at ~/.undodir + }; imports = [ ./modules/packages diff --git a/nix/home-manager/modules/files.nix b/nix/home-manager/modules/files.nix index 3bdcc49..8e26c11 100644 --- a/nix/home-manager/modules/files.nix +++ b/nix/home-manager/modules/files.nix @@ -5,4 +5,10 @@ ... }: { home.file.".config/zellij/config.kdl".source = ../../../zellij/config.kdl; + # TODO + # git-sync binary + # ideavimrc + # kitty.conf + # lsd/config.yaml + # cargo config } diff --git a/nix/home-manager/modules/packages/default.nix b/nix/home-manager/modules/packages/default.nix index 981dc77..051c66d 100644 --- a/nix/home-manager/modules/packages/default.nix +++ b/nix/home-manager/modules/packages/default.nix @@ -5,16 +5,29 @@ ... }: { home.packages = with pkgs; [ - just - difftastic - git - zsh - erdtree - htop - ripgrep - zellij - neovim + # TODO: https://github.com/ogham/dog + atuin + bandwhich bat comma + delta + difftastic + erdtree + exa + fd + git + gnutar + htop + just + kondo + mcfly + neovim + ripgrep + skim + starship + zellij + zoxide + zsh + zstd ]; }