Enable camera for Dell XPS
Install lshw Set default Git branch to master
This commit is contained in:
parent
0cecc75e3d
commit
93104ed7e0
3 changed files with 17 additions and 1 deletions
|
@ -72,6 +72,7 @@
|
||||||
wget
|
wget
|
||||||
yq
|
yq
|
||||||
ncdu
|
ncdu
|
||||||
|
lshw
|
||||||
]) ++ (with pkgs.gnomeExtensions; [
|
]) ++ (with pkgs.gnomeExtensions; [
|
||||||
pop-shell
|
pop-shell
|
||||||
window-is-ready-remover
|
window-is-ready-remover
|
||||||
|
@ -180,7 +181,15 @@
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
permittedInsecurePackages = [ "electron-25.9.0" ];
|
permittedInsecurePackages = [ "electron-25.9.0" ];
|
||||||
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "vmware-horizon-client" "libfprint-2-tod1-goodix" "vmware-workstation" ];
|
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||||
|
"vmware-horizon-client"
|
||||||
|
"libfprint-2-tod1-goodix"
|
||||||
|
"vmware-workstation"
|
||||||
|
"ipu6-camera-bins-unstable"
|
||||||
|
"ipu6-camera-bins"
|
||||||
|
"ivsc-firmware-unstable"
|
||||||
|
"ivsc-firmware"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
overlays = [
|
overlays = [
|
||||||
|
@ -255,6 +264,7 @@
|
||||||
sops = {
|
sops = {
|
||||||
age.keyFile = "/home/pim/.config/sops/age/keys.txt";
|
age.keyFile = "/home/pim/.config/sops/age/keys.txt";
|
||||||
defaultSopsFile = ./secrets/secrets.yaml;
|
defaultSopsFile = ./secrets/secrets.yaml;
|
||||||
|
|
||||||
secrets = {
|
secrets = {
|
||||||
"wireguard/home/presharedKey" = { };
|
"wireguard/home/presharedKey" = { };
|
||||||
"wireguard/home/privateKey" = { };
|
"wireguard/home/privateKey" = { };
|
||||||
|
|
|
@ -163,6 +163,11 @@
|
||||||
|
|
||||||
boot.initrd.luks.devices."luks-8ffd3129-4908-4209-98c4-4eb68a35c494".device = "/dev/disk/by-uuid/8ffd3129-4908-4209-98c4-4eb68a35c494";
|
boot.initrd.luks.devices."luks-8ffd3129-4908-4209-98c4-4eb68a35c494".device = "/dev/disk/by-uuid/8ffd3129-4908-4209-98c4-4eb68a35c494";
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usb_storage" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usb_storage" ];
|
||||||
|
|
||||||
|
hardware.ipu6 = {
|
||||||
|
enable = true;
|
||||||
|
platform = "ipu6ep";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
1
home.nix
1
home.nix
|
@ -233,6 +233,7 @@
|
||||||
push.autoSetupRemote = true;
|
push.autoSetupRemote = true;
|
||||||
commit.verbose = true;
|
commit.verbose = true;
|
||||||
pull.rebase = true;
|
pull.rebase = true;
|
||||||
|
init.defaultBranch = "master";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue