diff --git a/nodes/hosts/common/configuration.nix b/nodes/hosts/common/configuration.nix index 28cef33..864910e 100644 --- a/nodes/hosts/common/configuration.nix +++ b/nodes/hosts/common/configuration.nix @@ -1,8 +1,13 @@ { pkgs, ... }: { + imports = [ + ./firefox.nix + ]; + nixpkgs = { config.allowUnfree = true; }; + nix = { gc.options = "--delete-older-than 30d"; optimise.automatic = true; diff --git a/nodes/hosts/common/firefox.nix b/nodes/hosts/common/firefox.nix new file mode 100644 index 0000000..a4e5e16 --- /dev/null +++ b/nodes/hosts/common/firefox.nix @@ -0,0 +1,4 @@ +{ pkgs, ... }: { + programs.firefox.enable = true; +} +