blob: 24789980ce50ee2f18fea0340cb7bb4e041ee8bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, lib, pkgs, ... }:
{
imports = [
./backups.nix
./beets.nix
./git.nix
./shell.nix
./ssh.nix
./tmux.nix
./yt-dlp.nix
];
home.packages = [ pkgs.gcc pkgs.gnumake pkgs.jq pkgs.ripgrep ];
}
|