diff --git a/modules/default.nix b/modules/default.nix index 34b0ce3..7d7a530 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -12,6 +12,7 @@ ./picom.nix ./zathura.nix ./zsh.nix + ./nix.nix ]; # USERS diff --git a/modules/nix.nix b/modules/nix.nix new file mode 100644 index 0000000..c649975 --- /dev/null +++ b/modules/nix.nix @@ -0,0 +1,8 @@ +{ config, lib, pkgs, ... }: + +{ + nix.package = pkgs.nixFlakes; + nix.extraOptions = '' + experimental-features = nix-command flakes + ''; +}