diff options
Diffstat (limited to '')
| -rw-r--r-- | modules/common/default.nix | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/modules/common/default.nix b/modules/common/default.nix deleted file mode 100644 index b2c7196..0000000 --- a/modules/common/default.nix +++ /dev/null @@ -1,49 +0,0 @@ -{ config, pkgs, lib, ... }: -{ - imports =[ - # names are self explanatory - ./adguard - ./doas - ./fonts - ./gnupg - ./i18n - ./nh - ./pipewire - ./searx - ./ssh - ./sudo - ./users - ]; - - nix = { - settings = { - # Enable flakes - experimental-features = [ "nix-command" "flakes" ]; - - # Optimize storage - auto-optimise-store = true; - - # substituters = lib.mkForce [ ]; - # trusted-substituters = lib.mkForce [ ]; - # require-sigs = false; - }; - }; - - # Allow unfree packages - nixpkgs = { - config.allowUnfree = true; - }; - - # List packages installed in system profile. - # These should be tools in case user tools brake. - # To search, run: - # $ nix search <pkgname> - # or - # $ nh search <pkgname> - environment.systemPackages = with pkgs; [ - alacritty - git - helix - xdg-utils - ]; -} |
