nixfiles/hosts/lappy-surface/lappy-surface.nix

51 lines
1 KiB
Nix
Raw Normal View History

2024-03-30 09:28:16 +00:00
{tree, ...}: {
imports = with tree; [
users.root
users.chaos
profiles.sshd
presets.nixos.desktopGnome
presets.nixos.laptop
presets.nixos.encryptedUSB
profiles.cross.arm64
profiles.remoteBuilders
#profiles.chaosInternalWireGuard
hosts.lappy-surface.profiles.music-player-target
2024-03-30 09:28:16 +00:00
./secrets.nix
];
home-manager.users.root = {
imports = with tree; [home.base];
home.stateVersion = "23.05";
};
home-manager.users.chaos = {
imports = with tree; [
home.base
home.dev.all
home.reversing
home.homeFolders
2024-03-30 10:21:07 +00:00
home.musicLibrary
2024-03-30 09:28:16 +00:00
home.programming.editors.nano
home.programming.editors.vscode
home.programming.languages.rust
home.programming.languages.nix
];
home.stateVersion = "23.05";
};
networking.firewall.enable = true;
networking.firewall.allowPing = true;
networking.firewall.allowedTCPPorts = [8088];
networking.hostName = "lappy-surface";
time.timeZone = "Europe/London";
2024-03-30 09:28:16 +00:00
system.stateVersion = "23.05";
}