refactor(sops): changed config around and centralised systems

This commit is contained in:
Mohammad Rafiq 2025-03-26 22:00:57 +08:00
parent a5701f22d5
commit 48ce4ce44f
No known key found for this signature in database
11 changed files with 113 additions and 194 deletions

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
imports = [
./hw-nemesis.nix
./modules/common.nix
@ -10,10 +11,5 @@
networking.hostName = "nemesis";
system.stateVersion = "24.11";
boot.binfmt.emulatedSystems = ["wasm32-wasi" "x86_64-windows" "aarch64-linux"];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = ["dm_crypt"];
boot.plymouth = {
enable = true;
};
}