moved all systems to linuxPackages_6_12

moved desktops off master
This commit is contained in:
2024-12-17 21:39:14 -05:00
parent e7231d2bd1
commit fe53feed59
2 changed files with 8 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
inputs, inputs,
lib, lib,
outputs, outputs,
pkgs,
... ...
}: }:
{ {
@@ -18,7 +19,11 @@
./snapshot_manager.nix ./snapshot_manager.nix
]; ];
boot.tmp.useTmpfs = true; boot = {
tmp.useTmpfs = true;
kernelPackages = lib.mkDefault pkgs.linuxPackages_6_12;
zfs.package = lib.mkDefault pkgs.zfs;
};
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;

View File

@@ -1,7 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
boot = { boot = {
kernelPackages = pkgs.master.linuxPackages_6_12; kernelPackages = pkgs.linuxPackages_6_12;
zfs.package = pkgs.master.zfs; zfs.package = pkgs.zfs;
}; };
} }