2023-07-29 16:41:20 +01:00
|
|
|
{tree, ...}: {
|
2023-07-21 11:48:07 +01:00
|
|
|
imports = with tree; [
|
|
|
|
users.root
|
|
|
|
users.chaos
|
|
|
|
profiles.sshd
|
|
|
|
|
2023-09-18 15:40:33 +01:00
|
|
|
presets.nixos.desktopGnome
|
2023-07-21 11:48:07 +01:00
|
|
|
presets.nixos.laptop
|
2023-09-18 03:56:58 +01:00
|
|
|
presets.nixos.encryptedUSB
|
2023-07-21 11:48:07 +01:00
|
|
|
|
2023-09-13 16:21:54 +01:00
|
|
|
profiles.cross.arm64
|
2023-09-21 05:06:27 +01:00
|
|
|
profiles.remoteBuilders
|
2023-09-18 15:40:33 +01:00
|
|
|
profiles.chaosInternalWireGuard
|
2023-08-09 20:53:22 +01:00
|
|
|
|
2023-10-23 22:17:56 +01:00
|
|
|
profiles.gaming.steam
|
|
|
|
|
2023-10-07 10:01:27 +01:00
|
|
|
./profiles/raspberryExtDrive.nix
|
|
|
|
|
2023-07-21 11:48:07 +01: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
|
2023-09-19 17:53:44 +01:00
|
|
|
home.homeFolders
|
2023-09-30 15:34:06 +01:00
|
|
|
home.musicLibrary
|
2023-07-21 11:48:07 +01:00
|
|
|
|
|
|
|
home.programming.editors.vscode
|
|
|
|
home.programming.languages.rust
|
|
|
|
home.programming.languages.nix
|
2023-10-23 22:17:56 +01:00
|
|
|
|
|
|
|
home.gaming.platforms.steam
|
2023-07-21 11:48:07 +01:00
|
|
|
];
|
|
|
|
home.stateVersion = "23.05";
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
networking.firewall.allowPing = true;
|
|
|
|
|
|
|
|
networking.firewall.allowedTCPPorts = [8088];
|
|
|
|
|
|
|
|
networking.hostName = "lappy-t495";
|
2023-08-09 15:11:04 +01:00
|
|
|
time.timeZone = "Europe/London";
|
2023-07-21 11:48:07 +01:00
|
|
|
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
}
|