ayame: Fix installation issues
This commit is contained in:
parent
487b79d71f
commit
8c16b5d4fc
29
ayame.nix
29
ayame.nix
@ -36,7 +36,7 @@ in {
|
||||
|
||||
boot = {
|
||||
loader = {
|
||||
efi.canTouchEfiVariables = true;
|
||||
efi.canTouchEfiVariables = false;
|
||||
grub = {
|
||||
enable = true;
|
||||
efiInstallAsRemovable = true;
|
||||
@ -70,18 +70,18 @@ in {
|
||||
xserver.videoDrivers = [ "modesetting" "fbdev" ];
|
||||
};
|
||||
|
||||
systemd.services = {
|
||||
rfkill-workaround = {
|
||||
enable = true;
|
||||
description = "Work around rfkill having the Wifi blocked at boot";
|
||||
before = [ "network.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
ExecStart = "rfkill unblock all";
|
||||
};
|
||||
};
|
||||
};
|
||||
#systemd.services = {
|
||||
# rfkill-workaround = {
|
||||
# enable = true;
|
||||
# description = "Work around rfkill having the Wifi blocked at boot";
|
||||
# before = [ "network.target" ];
|
||||
# wantedBy = [ "multi-user.target" ];
|
||||
# serviceConfig = {
|
||||
# Type = "oneshot";
|
||||
# ExecStart = "rfkill unblock all";
|
||||
# };
|
||||
# };
|
||||
#};
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
@ -94,7 +94,6 @@ in {
|
||||
};
|
||||
};
|
||||
swapDevices = [
|
||||
# TODO: Replace by UUID
|
||||
{ device = "/dev/disk/by-label/swap"; }
|
||||
{ device = "/dev/disk/by-uuid/cf3b1e1c-c245-4452-ad49-68ac72369e77"; }
|
||||
];
|
||||
}
|
||||
|
@ -2,7 +2,7 @@ pkgs:
|
||||
|
||||
import (builtins.fetchTarball {
|
||||
url = "https://github.com/nix-community/NUR/archive/master.tar.gz";
|
||||
sha256 = "1p0qa9bs8k0jhkdkyvxfcpi2hz2n8d61c63ps7mavk9z3zgnx20j";
|
||||
sha256 = "0znxac6j1139l777lfjm6y19px5xbdk3jcwcynwbmg5yafn8az0n";
|
||||
}) {
|
||||
inherit pkgs;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user