23 lines
420 B
Nix
23 lines
420 B
Nix
{ config, inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.hardware.nixosModules.lenovo-thinkpad-t480s
|
|
./hardware-configuration.nix
|
|
../../profiles
|
|
];
|
|
|
|
activeProfiles = ["base" "laptop"];
|
|
|
|
systemModules.user = {
|
|
ooks.enable = true;
|
|
shell.fish.enable = true;
|
|
};
|
|
|
|
networking = {
|
|
hostName = "ookst480s";
|
|
};
|
|
boot = {
|
|
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
|
|
};
|
|
}
|