From 78529ae2641e8645ee3459753819d0ecff655d86 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sun, 7 Mar 2021 15:11:56 -0500 Subject: Refactor configs into modules --- config/common.nix | 62 ------------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 config/common.nix (limited to 'config/common.nix') diff --git a/config/common.nix b/config/common.nix deleted file mode 100644 index 09f04a7..0000000 --- a/config/common.nix +++ /dev/null @@ -1,62 +0,0 @@ -{ config, lib, pkgs, ... }: -{ - imports = [ ./auto-upgrade.nix ]; - programs.zsh.enable = true; - programs.tmux.enable = true; - - nixpkgs.config.packageOverrides = pkgs: { - libsignal-protocol-c = pkgs.callPackage ../pkgs/libsignal-c/default.nix { }; - keycloak = pkgs.callPackage ../pkgs/keycloak/default.nix { }; - }; - - environment.shellAliases = { - vim = "nvim"; - }; - environment.systemPackages = with pkgs; [ - dnsutils - git - gnupg - haskellPackages.hledger - htop - mosh - neovim - # nox # Broken as of 2017-06-12 - pass - silver-searcher - whois - unzip - p7zip - unrar - ]; - time.timeZone = "America/New_York"; - - system.stateVersion = "17.04"; - services = { - postgresql = { - dataDir = "/var/db/postgresql"; - package = pkgs.postgresql95; - }; - openssh.passwordAuthentication = false; - }; - - nix = rec { - useSandbox = lib.mkDefault true; - maxJobs = lib.mkOverride 110 16; - buildCores = lib.mkDefault 0; # auto configure - gc.automatic = lib.mkDefault true; - trustedBinaryCaches = [ - "https://cache.nixos.org" - ]; - binaryCaches = trustedBinaryCaches; - daemonNiceLevel = 10; - daemonIONiceLevel = 10; - package = pkgs.nixFlakes; - extraOptions = '' - experimental-features = nix-command flakes - ''; - }; - - boot.cleanTmpDir = true; - - nixpkgs.config.allowUnfree = true; -} -- cgit v1.2.3