diff --git a/config/hosts/aspects/doloro-laptop/hardware.nix b/config/hosts/aspects/doloro-laptop/hardware.nix index e9e9113..a935fcf 100644 --- a/config/hosts/aspects/doloro-laptop/hardware.nix +++ b/config/hosts/aspects/doloro-laptop/hardware.nix @@ -11,10 +11,13 @@ pkgs, lib, config, + modulesPath, ... }: { - + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" @@ -27,7 +30,6 @@ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; - }; }; } diff --git a/config/modules/hyprland/hyprland.nix b/config/modules/hyprland/hyprland.nix index 3689e0b..48bbdc8 100644 --- a/config/modules/hyprland/hyprland.nix +++ b/config/modules/hyprland/hyprland.nix @@ -11,6 +11,7 @@ nixos = { pkgs, ... }: { + imports = [ inputs.hyprland.nixosModules.default ]; environment.systemPackages = with pkgs; [ wayfreeze grim diff --git a/flake.lock b/flake.lock index 7670ebf..04aae83 100644 --- a/flake.lock +++ b/flake.lock @@ -738,17 +738,14 @@ "nixpkgs_3": { "locked": { "lastModified": 1770843696, - "narHash": "sha256-LovWTGDwXhkfCOmbgLVA10bvsi/P8eDDpRudgk68HA8=", - "owner": "nixos", - "repo": "nixpkgs", + "narHash": "sha256-9SFCZkVcpDOV6unH5hVEy4+dB0rxMuUoBnDAO6vshac=", "rev": "2343bbb58f99267223bc2aac4fc9ea301a155a16", - "type": "github" + "type": "tarball", + "url": "https://releases.nixos.org/nixpkgs/nixpkgs-26.05pre944764.2343bbb58f99/nixexprs.tar.xz" }, "original": { - "owner": "nixos", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "tarball", + "url": "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz" } }, "nixpkgs_4": { diff --git a/flake.nix b/flake.nix index 3f70a9c..2454e52 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ }; hyprland.url = "github:hyprwm/Hyprland"; import-tree.url = "github:vic/import-tree"; - nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; + nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; nixpkgs-lib.follows = "nixpkgs"; nixvim = { inputs.nixpkgs.follows = "nixpkgs";