Files
nixos-flake/hosts/virtual-bird/default.nix
Kenryu Shibata d471aa77f9 update
2026-01-07 01:42:09 +09:00

30 lines
500 B
Nix

{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../profiles/base.nix
../../profiles/desktop.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
services.xserver.windowManager.i3.enable = true;
environment.systemPackages = with pkgs; [
rofi
dunst
vim
tmux
];
networking.hostName = "virtual-bird";
networking.firewall.enable = true;
system.stateVersion = "25.11";
}