nixcfg/hosts/rustboro/default.nix

57 lines
886 B
Nix

# Lenovo Thinkpad T440p with a Core i5 4210M, 16GB RAM, 512GB SSD.
{
config,
inputs,
lib,
pkgs,
self,
...
}: {
imports = [
./disko.nix
./hardware.nix
./home.nix
];
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
networking.hostName = "rustboro";
system.stateVersion = "24.05";
alyraffauf = {
base = {
enable = true;
zramSwap.size = 100;
};
desktop = {
enable = true;
greetd = {
enable = true;
autologin = {
enable = true;
user = "aly";
};
};
cinnamon.enable = true;
};
services = {
syncthing.enable = true;
tailscale.enable = true;
};
users.aly = {
enable = true;
password = "$y$j9T$VdtiEyMOegHpcUwgmCVFD0$K8Ne6.zk//VJNq2zxVQ0xE0Wg3LohvAQd3Xm9aXdM15";
};
};
}