mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
49 lines
785 B
Nix
49 lines
785 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";
|
|
|
|
ar = {
|
|
apps.firefox.enable = true;
|
|
|
|
base = {
|
|
enable = true;
|
|
zramSwap.size = 100;
|
|
};
|
|
|
|
desktop = {
|
|
cinnamon.enable = true;
|
|
lightdm.enable = true;
|
|
};
|
|
|
|
services = {
|
|
syncthing.enable = true;
|
|
tailscale.enable = true;
|
|
};
|
|
|
|
users.aly = {
|
|
enable = true;
|
|
password = "$y$j9T$VdtiEyMOegHpcUwgmCVFD0$K8Ne6.zk//VJNq2zxVQ0xE0Wg3LohvAQd3Xm9aXdM15";
|
|
};
|
|
};
|
|
}
|