nixpkgs fmt

This commit is contained in:
revol-xut 2023-04-23 19:43:53 +02:00
parent 71eb19b82b
commit 8e1543bb14
No known key found for this signature in database
GPG key ID: 4F56FF7759627D07
2 changed files with 7 additions and 4 deletions

View file

@ -5,7 +5,8 @@
{
imports =
[ (modulesPath + "/profiles/qemu-guest.nix")
[
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
@ -14,12 +15,14 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/599838c5-49cd-4769-aff1-2236300c097f";
{
device = "/dev/disk/by-uuid/599838c5-49cd-4769-aff1-2236300c097f";
fsType = "xfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/3F75-65A3";
{
device = "/dev/disk/by-uuid/3F75-65A3";
fsType = "vfat";
};

View file

@ -22,7 +22,7 @@ in
type = ldap;
CNFieldName = cn;
UIDFieldName = uid;
baseDN = "ou = users, dc=ifsr, dc=de";
baseDN = "ou=users, dc=ifsr, dc=de";
bindDN = "uid=search, ou=users, dc=ifsr, dc=de";
bindPassword = LDAP_SEARCH;
hostname = "ldap://localhost";