summaryrefslogtreecommitdiff
path: root/hosts/oracle
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/oracle')
-rw-r--r--hosts/oracle/configuration.nix9
-rw-r--r--hosts/oracle/home.nix2
2 files changed, 8 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 };
diff --git a/hosts/oracle/home.nix b/hosts/oracle/home.nix
index 88a186a..b758d41 100644
--- a/hosts/oracle/home.nix
+++ b/hosts/oracle/home.nix
@@ -14,6 +14,7 @@
14 unzip 14 unzip
15 wget 15 wget
16 gnupg 16 gnupg
17 neovim
17 file 18 file
18 pinentry 19 pinentry
19 wl-clipboard 20 wl-clipboard
@@ -23,6 +24,7 @@
23 firefox 24 firefox
24 brave 25 brave
25 libreoffice-qt 26 libreoffice-qt
27 input-fonts
26 (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) 28 (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
27 ]; 29 ];
28 30