1
0
Fork 0
dotfiles/home/hosts/neon.nix

25 lines
286 B
Nix
Raw Normal View History

2023-07-16 22:17:50 +00:00
{ pkgs, ... }:
2023-06-14 19:55:35 +00:00
{
imports = [
2024-12-24 00:41:50 +00:00
../programs/zsh
2023-06-14 19:55:35 +00:00
../programs/starship.nix
../programs/git.nix
../programs/bat.nix
../programs/jq.nix
../programs/scripts.nix
];
home = {
stateVersion = "23.11";
2023-06-14 19:55:35 +00:00
packages = with pkgs; [
ripgrep
];
};
}