Add flight back. It will be my laptop for my Club

This commit is contained in:
Bun 2025-07-11 23:37:45 -04:00
parent 9eaddef14e
commit c35f717231
9 changed files with 146 additions and 0 deletions

22
hosts/flight/default.nix Normal file
View file

@ -0,0 +1,22 @@
{ config, lib, ... }:
{
imports = [
./boot
./filesystems
./hardware
./root
];
system = {
nixos.tags = [
"pc"
"chat"
"production"
];
stateVersion = "25.05";
};
deployment.targetHost = "409:b2b1:966c:b13:6d67:2d6b:45e2:f048";
home-manager.users."${config.vars.mainUser}".wayland.windowManager.sway.extraSessionCommands = lib.mkForce "";
}