mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
Im testing this to allow jeeves to be stable and desktops stay on the latest kernel
18 lines
310 B
Nix
18 lines
310 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
boot = {
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_zen;
|
|
zfs.package = pkgs.zfs_unstable;
|
|
};
|
|
services = {
|
|
desktopManager.plasma6.enable = true;
|
|
xserver = {
|
|
enable = true;
|
|
xkb = {
|
|
layout = "us";
|
|
variant = "";
|
|
};
|
|
};
|
|
};
|
|
}
|