2025-09-13 19:23:00 -04:00
|
|
|
{ config, pkgs, inputs, ... }:
|
2025-08-26 23:47:08 -04:00
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
./hardware-configuration.nix
|
2025-09-13 19:23:00 -04:00
|
|
|
../../modules/kanata.nix
|
|
|
|
|
../../modules/efi.nix
|
|
|
|
|
../../modules/laptop.nix
|
|
|
|
|
../../modules/hypr.nix
|
2025-08-26 23:47:08 -04:00
|
|
|
];
|
|
|
|
|
|
2025-09-13 19:23:00 -04:00
|
|
|
networking.hostName = "mecca";
|
2025-08-26 23:47:08 -04:00
|
|
|
|
|
|
|
|
stylix = {
|
|
|
|
|
enable = true;
|
|
|
|
|
image = ./bg.jpg;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
system.stateVersion = "25.05";
|
2025-08-31 11:40:43 -04:00
|
|
|
}
|