move some nix settings into new file

This commit is contained in:
Miranda Marquez 2024-03-26 20:46:24 -08:00
parent c110948b58
commit 26f9d6675b
2 changed files with 12 additions and 5 deletions

View File

@ -8,10 +8,11 @@
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
imports = [ ./modules/networking.nix ]; imports = [
./modules/networking.nix
./modules/nix-settings.nix
];
# Set your time zone. # Set your time zone.
time.timeZone = "America/Anchorage"; time.timeZone = "America/Anchorage";
@ -143,8 +144,6 @@
systemd.services."getty@tty1".enable = false; systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false; systemd.services."autovt@tty1".enable = false;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget

8
modules/nix-settings.nix Normal file
View File

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
}