nixcfg/hosts/rustboro/default.nix

37 lines
749 B
Nix
Raw Normal View History

2024-03-16 13:23:59 -04:00
# Lenovo Thinkpad T440p with a Core i5 4210M, 16GB RAM, 512GB SSD.
2024-02-29 17:06:55 -05:00
{ config, pkgs, ... }:
{
2024-03-24 14:06:24 -04:00
imports = [
./hardware-configuration.nix # Include the results of the hardware scan.
2024-03-28 19:52:15 -04:00
./home.nix
2024-03-24 14:06:24 -04:00
];
2024-02-29 17:06:55 -05:00
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
2024-03-01 19:46:38 -05:00
boot.loader.grub.useOSProber = false;
2024-02-29 17:06:55 -05:00
networking.hostName = "rustboro"; # Define your hostname.
2024-02-29 21:47:46 -05:00
powerManagement.cpuFreqGovernor = "ondemand";
2024-02-29 21:46:49 -05:00
systemConfig = {
plymouth.enable = true;
zramSwap.enable = true;
};
desktopConfig = {
enable = true;
windowManagers.hyprland.enable = true;
};
apps = {
flatpak.enable = true;
2024-03-28 19:54:46 -04:00
steam.enable = false;
};
2024-02-29 17:06:55 -05:00
system.stateVersion = "23.11"; # Did you read the comment?
2024-03-24 14:06:24 -04:00
}