Do not share boot settings between machines

This commit is contained in:
Cyryl Płotnicki 2019-04-26 09:04:38 +01:00
parent 0fe50f8d74
commit cfc3bc10c4
4 changed files with 9 additions and 5 deletions

View file

@ -6,9 +6,6 @@
loader.grub = {
enable = true;
version = 2;
device = "nodev";
efiSupport = true;
};
loader.efi.canTouchEfiVariables = true;
};
}

View file

@ -12,6 +12,11 @@
preLVM = true;
allowDiscards = true;
}];
loader.grub = {
device = "nodev";
efiSupport = true;
};
loader.efi.canTouchEfiVariables = true;
};
time.timeZone = "Europe/London";
imports = [ ../common.nix ];

View file

@ -10,6 +10,9 @@
preLVM = true;
allowDiscards = true;
}];
loader.grub = {
device = "nodev";
};
};
time.timeZone = "Europe/Warsaw";
imports = [ ../common.nix ];

View file

@ -2,7 +2,7 @@
let
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
etesync-dav = import "/home/cyryl/dev/dotfiles/nixos/packages/etesync-dav/default.nix";
etesync-dav = import ./packages/etesync-dav/default.nix;
in
{
imports =
@ -103,7 +103,6 @@ in
security.pam.services.gdm.enableGnomeKeyring = true;
sound.enable = true;
hardware.pulseaudio.enable = true;
hardware.u2f.enable = true;