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,13 @@
{ config, pkgs, ... }:
{
let hashedPassword = "$6$HYibiGhDN.JgLtw6$cecU7NjfumTUJSkFNFQG4uVgdd3tTPLGxK0zHAwYn3un/V43IUlyVBNKoRMLCQk65RckbD/.AjsLFVFKUUHVA/";
in {
imports = [
./hardware-configuration.nix
];
networking.hostName = "kiana-desktop";
# Passwords
users.users.kiana = { inherit hashedPassword; };
users.users.root = { inherit hashedPassword; };
}