python312Packages.millheater: 0.11.8 -> 0.12.0
[NixPkgs.git] / nixos / tests / pam / pam-file-contents.nix
blobaccaa4cc70a943cdf2ee3203a02ccb5f10a3b1e6
1 let
2   name = "pam";
3 in
4 import ../make-test-python.nix ({ pkgs, ... }: {
5   name = "pam-file-contents";
7   nodes.machine = { ... }: {
8     imports = [ ../../modules/profiles/minimal.nix ];
10     security.krb5.enable = true;
12     users = {
13       mutableUsers = false;
14       users = {
15         user = {
16           isNormalUser = true;
17         };
18       };
19     };
20   };
22   testScript = builtins.replaceStrings
23     [ "@@pam_ccreds@@" "@@pam_krb5@@" ]
24     [ pkgs.pam_ccreds.outPath pkgs.pam_krb5.outPath ]
25     (builtins.readFile ./test_chfn.py);