21 lines
350 B
Nix
21 lines
350 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
../../modules/kanata.nix
|
|
../../modules/efi.nix
|
|
../../modules/laptop.nix
|
|
../../modules/hypr.nix
|
|
];
|
|
|
|
networking.hostName = "mecca";
|
|
|
|
/* stylix = {
|
|
enable = true;
|
|
image = ./bg.jpg;
|
|
}; */
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|