Skip to content

nealfennimore/nixos-stig-anduril

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NixOS STIG Anduril

.github/workflows/test.yml

Baseline NixOS configuration for implementing STIG controls for via Anduril STIG

Usage

Example

See test for complete example implementation.

Flake Import

{
  description = "Your Flake";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";

    anduril-stig = {
      url = "github:nealfennimore/nixos-stig-anduril";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = { self, nixpkgs, anduril-stig }: {

    nixosConfigurations = {
      my_system = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";
        modules = anduril-stig.modules ++ [
            ./configuration.nix
        ];
      };
    };
  };
}

About

Nix configuration baseline for Anduril NixOS STIG https://stigui.com/stigs/Anduril_NixOS_STIG

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published