Fix laptop firmware issues

This commit is contained in:
Kiana Sheibani 2022-01-17 04:05:12 +00:00
parent b3ab35d719
commit d712da4415
3 changed files with 16 additions and 8 deletions

View file

@ -1,8 +1,16 @@
{ ... }:
{
let hashedPassword = "$6$y3eb1phxFWnParRT$w1LNfxJ2ByHoiBa5ywh4STGuIK/r4Tnyxx2Xe/nlovrE6LuuLAVdKRFAroUTtUI/d2BNGI9ErjZ2z2Dl7w/t00";
in {
imports = [
./hardware-configuration.nix
];
networking.hostName = "kiana-laptop";
boot.loader.grub.useOSProber = true;
hardware.enableRedistributableFirmware = true;
# Passwords
users.users.kiana = { inherit hashedPassword; };
users.users.root = { inherit hashedPassword; };
}