1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 02:51:08 +01:00
Files
niveum/configs/nix.nix

11 lines
168 B
Nix
Raw Normal View History

2021-01-01 02:48:37 +01:00
{ pkgs, ... }:
{
# enable `nix flake`
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
}