From 5749c06b20f00bcf01b86be7b299fed3496a80d3 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Fri, 20 Mar 2026 00:31:05 +0000 Subject: [PATCH] cachy kernel test --- config/hosts/aspects/doloro-desktop/home.nix | 3 +++ config/modules/cachyos-kernel.nix | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 config/modules/cachyos-kernel.nix diff --git a/config/hosts/aspects/doloro-desktop/home.nix b/config/hosts/aspects/doloro-desktop/home.nix index de22601..fa85844 100644 --- a/config/hosts/aspects/doloro-desktop/home.nix +++ b/config/hosts/aspects/doloro-desktop/home.nix @@ -2,6 +2,7 @@ den, __findFile, modules, + inputs, ... }: { @@ -37,6 +38,8 @@ shell = pkgs.fish; hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path; }; + boot.kernelPackage = + inputs.nix-cachyos-kernel.legacyPackages.x86_64-linux.linuxPackages-cachyos-lts-lto; }; homeManager = { home, pkgs, ... }: diff --git a/config/modules/cachyos-kernel.nix b/config/modules/cachyos-kernel.nix new file mode 100644 index 0000000..e2234c7 --- /dev/null +++ b/config/modules/cachyos-kernel.nix @@ -0,0 +1,12 @@ +{ + modules, + den, + inputs, + ... +}: +{ + flake-file.inputs = { + nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release"; + }; + # inputs.nix-cachyos-kernel.legacyPackages.x86_64-linux.linuxPackages-cachyos-lts-lto; +}