testing the new config before pushing to main

This commit is contained in:
ooks-io 2024-01-19 20:35:26 +13:00
parent c53123d2c5
commit 19afda3c58
4 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,24 @@
{ config, inputs, pkgs, ... }:
{
imports = [
inputs.hardware.nixosModules.lenovo-thinkpad-t480s
./hardware-configuration.nix
../../profiles
# ../../modules
];
activeProfiles = ["base" "laptop"];
systemModules.user = {
ooks.enable = true;
shell.fish.enable = true;
};
networking = {
hostName = "ookst480s";
};
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
};
}