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

25 lines
291 B
Nix
Raw Normal View History

2023-07-16 22:17:50 +00:00
{ pkgs, ... }:
2023-06-14 19:55:35 +00:00
{
imports = [
../programs/fish.nix
../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
];
};
}