chore: move nix specific config to its own module
This commit is contained in:
parent
66443b7679
commit
a2794a99cd
3 changed files with 10 additions and 8 deletions
9
modules/nix.nix
Normal file
9
modules/nix.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Nix Configuration
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Enable nix-command and flakes
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue