Compare commits
2 commits
65621fdfa9
...
05613ee393
Author | SHA1 | Date | |
---|---|---|---|
joygnu | 05613ee393 | ||
joygnu | 78e45e7613 |
|
@ -3,8 +3,10 @@
|
||||||
hostname=$(hostname)
|
hostname=$(hostname)
|
||||||
|
|
||||||
if [[ $hostname == *"pc"* ]]; then
|
if [[ $hostname == *"pc"* ]]; then
|
||||||
|
echo "This machine is identified as a Desktop PC."
|
||||||
sudo nixos-rebuild switch --flake ~/nix/#pc
|
sudo nixos-rebuild switch --flake ~/nix/#pc
|
||||||
elif [[ $hostname == *"laptop"* ]]; then
|
elif [[ $hostname == *"laptop"* ]]; then
|
||||||
|
echo "This machine is identified as a Laptop."
|
||||||
sudo nixos-rebuild switch --flake ~/nix/#laptop
|
sudo nixos-rebuild switch --flake ~/nix/#laptop
|
||||||
else
|
else
|
||||||
echo "Unable to determine the type of machine."
|
echo "Unable to determine the type of machine."
|
||||||
|
|
|
@ -2,19 +2,10 @@
|
||||||
{
|
{
|
||||||
networking.hostName = "laptop";
|
networking.hostName = "laptop";
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
#boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
#boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader = {
|
boot.loader.timeout = 5;
|
||||||
efi = {
|
|
||||||
canTouchEfiVariables = true;
|
|
||||||
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
|
|
||||||
};
|
|
||||||
grub = {
|
|
||||||
efiSupport = true;
|
|
||||||
#efiInstallAsRemovable = true; # in case canTouchEfiVariables doesn't work for your system
|
|
||||||
device = "nodev";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
imports = [
|
imports = [
|
||||||
../../modules
|
../../modules
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
|
|
Loading…
Reference in a new issue