nixcfg/hosts/rustboro/default.nix

36 lines
795 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-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
home-manager.users.aly = import ../../home/aly-hyprland.nix;
desktopConfig = {
enable = true;
windowManagers.hyprland.enable = true;
};
apps = {
flatpak.enable = true;
steam.enable = true;
};
systemConfig.plymouth.enable = true;
systemConfig.zramSwap.enable = true;
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
}