added config for waku

This commit is contained in:
Kenryu Shibata
2026-03-11 20:03:54 +09:00
parent d471aa77f9
commit 52d1d2db18
3 changed files with 35 additions and 5 deletions

25
hosts/waku/default.nix Normal file
View File

@@ -0,0 +1,25 @@
{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../profiles/base.nix
# ../../profiles/desktop.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
environment.systemPackages = with pkgs; [
vim
tmux
];
networking.hostName = "wakugumi-hitoroku";
networking.firewall.enable = true;
system.stateVersion = "25.11";
}