9 lines
153 B
Nix
9 lines
153 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
unstable = import <nixos-unstable> {};
|
|
in {
|
|
environment.systemPackages = with pkgs; [
|
|
unstable.notmuch
|
|
];
|
|
}
|