nixos-config/laptop/config/default.nix

18 lines
482 B
Nix
Raw Normal View History

2022-01-06 22:16:45 -05:00
{ ... }:
2022-01-16 23:05:12 -05:00
let hashedPassword = "$6$y3eb1phxFWnParRT$w1LNfxJ2ByHoiBa5ywh4STGuIK/r4Tnyxx2Xe/nlovrE6LuuLAVdKRFAroUTtUI/d2BNGI9ErjZ2z2Dl7w/t00";
in {
2022-01-15 14:55:25 -05:00
imports = [
./hardware-configuration.nix
];
2022-01-06 22:17:01 -05:00
networking.hostName = "kiana-laptop";
2022-01-16 23:05:12 -05:00
boot.loader.grub.useOSProber = true;
hardware.enableRedistributableFirmware = true;
2022-01-25 20:28:37 -05:00
hardware.enableAllFirmware = true;
2022-01-16 23:05:12 -05:00
# Passwords
users.users.kiana = { inherit hashedPassword; };
users.users.root = { inherit hashedPassword; };
2022-01-06 22:17:01 -05:00
}