Add laptop configuration

This commit is contained in:
Greg Hellings
2022-08-13 00:17:46 -05:00
parent 0dfd8ef63f
commit cecc289c6b
5 changed files with 215 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ ... }:
{
imports = [
./hardware-configuration.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
# Graphics, please
greg.gnome.enable = true;
# Set host name
networking.hostName = "lappy";
}