summaryrefslogtreecommitdiff
path: root/hosts/oracle/configuration.nix
diff options
context:
space:
mode:
authorShubham Saini <me@ubh.sh>2023-10-01 00:03:47 +0000
committerShubham Saini <me@ubh.sh>2023-10-01 00:03:47 +0000
commit800b5b57725875e633d81e1bc8e753179ae79b72 (patch)
treed832a0b6032fa0c2f23e347e926f870c7ac5cb70 /hosts/oracle/configuration.nix
parentc13216c1635e7932ce9af202dcf220b770606010 (diff)
adding fonts
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 };