summaryrefslogtreecommitdiff
path: root/hosts/oracle/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/oracle/configuration.nix')
-rw-r--r--hosts/oracle/configuration.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/hosts/oracle/configuration.nix b/hosts/oracle/configuration.nix
index 9782959..c6daff9 100644
--- a/hosts/oracle/configuration.nix
+++ b/hosts/oracle/configuration.nix
@@ -33,13 +33,16 @@
33 extraGroups = [ "networkmanager" "wheel" "docker" ]; 33 extraGroups = [ "networkmanager" "wheel" "docker" ];
34 }; 34 };
35 35
36 nixpkgs.config.allowUnfree = true; 36 nixpkgs = {
37 config = {
38 allowUnfree = true;
39 input-fonts.acceptLicense = true;
40 };
41 };
37 42
38 environment = { 43 environment = {
39 pathsToLink = ["/share/zsh"]; 44 pathsToLink = ["/share/zsh"];
40 systemPackages = with pkgs; [ 45 systemPackages = with pkgs; [
41 neovim
42 git
43 interception-tools 46 interception-tools
44 ]; 47 ];
45 }; 48 };