nix, home-manager: move common config out of flake.nix

This commit is contained in:
Katherina Walshe-Grey 2024-09-18 19:38:20 +01:00
parent a47d1f47e8
commit e713fe3b2c
4 changed files with 21 additions and 23 deletions

7
common/nix.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
nix.settings.experimental-features = "nix-command flakes";
nix.nixPath = [ "nixpkgs=flake:nixpkgs" ];
nixpkgs.config.allowUnfree = true;
}