mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 07:25:40 +00:00
- Added lanzaboote - Disabled systemd-boot in favor of lanzaboote - Added sbctl
20 lines
535 B
Nix
20 lines
535 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
inputs.nix-flatpak.nixosModules.nix-flatpak
|
|
inputs.sops-nix.nixosModules.sops
|
|
inputs.lanzaboote.nixosModules.lanzaboote
|
|
./hardware-configuration.nix
|
|
] ++ (
|
|
let
|
|
modulesPath = ./modules;
|
|
moduleFiles = builtins.attrNames (builtins.readDir modulesPath);
|
|
in
|
|
map (module: modulesPath + ("/" + module)) moduleFiles
|
|
);
|
|
|
|
system.stateVersion = "25.05";
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
}
|