nixos-dotfiles

nixos-dotfiles

https://git.tonybtw.com/nixos-dotfiles.git git://git.tonybtw.com/nixos-dotfiles.git
174 bytes raw
1
{ pkgs, ... }:
2
{
3
  programs.emacs = {
4
    enable = true;
5
    package = pkgs.emacs;
6
  };
7
8
  home.packages = with pkgs; [
9
    git
10
    ripgrep
11
    fd
12
    gcc
13
    sqlite
14
  ];
15
}