From 66a61e9ede5803bd786e9eb408450c9c749b3b00 Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 6 Jul 2023 12:24:21 +0900 Subject: [PATCH] test --- configuration.nix | 1 - hosts/nixos-laptop/configuration.nix | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 708ac09d..32cb712d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -3,7 +3,6 @@ # NixOS Packages / Options: # https://search.nixos.org/packages? - { lib, config, pkgs, ... }: { imports = [ diff --git a/hosts/nixos-laptop/configuration.nix b/hosts/nixos-laptop/configuration.nix index 82f42523..00b491ff 100644 --- a/hosts/nixos-laptop/configuration.nix +++ b/hosts/nixos-laptop/configuration.nix @@ -1,5 +1,8 @@ { lib, config, pkgs, ... }: { + # Allow unfree packages + nixpkgs.config.allowUnfree = true; + # Set the networking hostname: networking.hostName = "nixos-laptop";