added nix module

dev-docs
Moritz Böhme 2021-09-11 13:18:27 +02:00
parent 9af3b867c6
commit d523e07700
2 changed files with 9 additions and 0 deletions

View File

@ -12,6 +12,7 @@
./picom.nix ./picom.nix
./zathura.nix ./zathura.nix
./zsh.nix ./zsh.nix
./nix.nix
]; ];
# USERS # USERS

8
modules/nix.nix Normal file
View File

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
nix.package = pkgs.nixFlakes;
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
}