From 893ea11e1dc05fe1a2a34e66d4ebcfdffda34720 Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Sun, 30 Nov 2025 22:59:43 +0100 Subject: huge restructure of modules --- modules/common/default.nix | 49 ---------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 modules/common/default.nix (limited to 'modules/common/default.nix') 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 - # or - # $ nh search - environment.systemPackages = with pkgs; [ - alacritty - git - helix - xdg-utils - ]; -} -- cgit v1.2.3