17 lines
328 B
Nix
17 lines
328 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
../../modules/kanata/kanata.nix
|
|
../../modules/efi.nix
|
|
../../modules/laptop.nix
|
|
../../modules/hypr.nix
|
|
../../modules/syncthing.nix
|
|
];
|
|
|
|
networking.hostName = "kirigiri";
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|