Add Redmond back

This commit is contained in:
Bun 2025-07-13 19:53:15 -04:00
parent e303600270
commit bf8d0f7be3
19 changed files with 183 additions and 28 deletions

24
hosts/redmond/default.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, lib, ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./network
../../modules/system
];
system = {
nixos.tags = [
"pc"
"chat"
"production"
];
stateVersion = "24.05";
};
deployment.targetHost = "5b1:477f:8564:f325:54b4:4704:323a:b2b";
home-manager.users."${config.vars.mainUser}".wayland.windowManager.sway.extraSessionCommands = lib.mkForce "";
}