add lanzaboote and remove defective aagl module for now
This commit is contained in:
parent
fd6ca655c3
commit
88365b373a
2 changed files with 23 additions and 4 deletions
13
flake.nix
13
flake.nix
|
@ -34,6 +34,12 @@
|
||||||
url = "github.ezKEa/aagl-gtk-on-nix";
|
url = "github.ezKEa/aagl-gtk-on-nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lanzaboote = {
|
||||||
|
url = "github:nix-community/lanzaboote";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
satisfactory-server = {
|
satisfactory-server = {
|
||||||
url = "github:nekowinston/satisfactory-server-flake";
|
url = "github:nekowinston/satisfactory-server-flake";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
@ -57,9 +63,10 @@
|
||||||
./modules/nh.nix
|
./modules/nh.nix
|
||||||
./modules/waydroid.nix
|
./modules/waydroid.nix
|
||||||
./modules/packages.nix
|
./modules/packages.nix
|
||||||
./modules/aagl.nix
|
# ./modules/aagl.nix
|
||||||
inputs.aagl.nixosModules.default
|
# inputs.aagl.nixosModules.default
|
||||||
{ nix.settings = inputs.aagl.nixConfig; } # Setup cachix for aagl projects
|
inputs.lanzaboote.nixosModules.lanzaboote
|
||||||
|
# { nix.settings = inputs.aagl.nixConfig; } # Setup cachix for aagl projects
|
||||||
# Imports home-manager module for use within nixos, not reccomended for use WITH standalone version
|
# Imports home-manager module for use within nixos, not reccomended for use WITH standalone version
|
||||||
# inputs.home-manager.nixosModules.default
|
# inputs.home-manager.nixosModules.default
|
||||||
];
|
];
|
||||||
|
|
|
@ -12,9 +12,19 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
boot = {
|
||||||
|
initrd.systemd.enable = true;
|
||||||
|
|
||||||
|
loader.systemd-boot.enable = lib.mkForce false;
|
||||||
|
|
||||||
|
lanzaboote = {
|
||||||
|
enable = true;
|
||||||
|
pkiBundle = "/etc/secureboot";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
# default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69+ fixes this
|
# default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69+ fixes this
|
||||||
|
@ -29,6 +39,8 @@
|
||||||
|
|
||||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
||||||
|
|
||||||
|
boot.bootspec.enabled = true;
|
||||||
|
|
||||||
networking.hostName = "gabbielaptop"; # Define your hostname.
|
networking.hostName = "gabbielaptop"; # Define your hostname.
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue