nixos-config/laptop/config/default.nix
Kiana Sheibani 2f610c6fc2 Miscellaneous config changes
- Updated flake inputs
- Fixed alacritty config
- Added sway exit keybind
- Added brightness control
- Created second wob bar for brightness
- Added networkmanager to laptop
2022-03-01 18:43:29 -05:00

23 lines
635 B
Nix

{ ... }:
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;
hardware.enableAllFirmware = true;
# Passwords
users.users.kiana = { inherit hashedPassword; };
users.users.root = { inherit hashedPassword; };
# Networking
networking.wireless.enable = false;
networking.networkmanager.enable = true;
users.users.kiana.extraGroups = [ "networkmanager" ];
}