# This file (and the global directory) holds config that i use on all hosts { lib, inputs, outputs, pkgs, ... }: { imports = [ inputs.home-manager.nixosModules.home-manager ./sops.nix ] ++ (builtins.attrValues outputs.nixosModules); system.stateVersion = "22.11"; home-manager = { useUserPackages = true; extraSpecialArgs = { inherit inputs outputs; }; }; nixpkgs = { #overlays = builtins.attrValues outputs.overlays; config = { allowUnfree = true; }; }; programs.fuse.userAllowOther = true; # nixpkgs.overlays = overlays; # Enable nix flakes nix.package = pkgs.nixFlakes; nix.extraOptions = '' experimental-features = nix-command flakes ''; }