Merge branch 'master' of github.com:Kropatz/dotfiles

This commit is contained in:
Kopatz
2024-03-19 12:40:10 +01:00
17 changed files with 139 additions and 34 deletions

View File

@@ -24,5 +24,6 @@
tldr
file
unzip
lsof
];
}

10
modules/ecryptfs.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ...}:
{
environment.systemPackages = with pkgs; [
ecryptfs
];
security.pam.enableEcryptfs = true;
programs.ecryptfs.enable = true;
boot.kernelModules = ["ecryptfs"];
}

View File

@@ -6,5 +6,6 @@
binwalk
sleuthkit
samdump2
apktool
];
}

View File

@@ -5,7 +5,7 @@
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "qt";
#pinentryFlavor = "qt";
};
#environment.systemPackages = with pkgs; [
# pinentry-curses

View File

@@ -10,7 +10,9 @@
taisei
osu-lazer-bin
wineWowPackages.unstableFull
winetricks
lutris
prismlauncher
#libs
];
}

View File

@@ -1,9 +1,10 @@
{ config, pkgs, ...}:
{
boot = {
kernelModules = ["v4l2loopback"]; # Autostart kernel modules on boot
extraModulePackages = with config.boot.kernelPackages; [v4l2loopback]; # loopback module to make OBS virtual camera work
};
# borked in unstable branch
#boot = {
# kernelModules = ["v4l2loopback"]; # Autostart kernel modules on boot
# extraModulePackages = with config.boot.kernelPackages; [v4l2loopback]; # loopback module to make OBS virtual camera work
#};
environment.systemPackages = with pkgs; [
(wrapOBS {

View File

@@ -2,10 +2,11 @@
{
services.xserver = {
layout = "at";
xkbVariant = "";
xkb.layout = "at";
xkb.variant = "";
enable = true;
displayManager.sddm.enable = true;
desktopManager.plasma6.enable = true;
#displayManager.sddm.wayland.enable = true;
};
services.desktopManager.plasma6.enable = true;
}

View File

@@ -1,3 +1,40 @@
{ pkgs, ... }:
{
programs.nix-ld.enable = true;
# programs.nix-ld.libraries = with pkgs; [
# nspr
# xorg.libXrandr
# xorg.libX11
# xorg.libXcomposite
# xorg.libXdamage
# xorg.libXfixes
# xorg.libXrender
# xorg.libXtst
# xorg.libXau
# xorg.libXdmcp
# expat
# libgcc.lib
# libglvnd
# zlib
# zstd
# stdenv.cc.cc
# curl
# openssl
# attr
# libssh
# bzip2
# libxml2
# acl
# libsodium
# util-linux
# xz
# systemd
# libkrb5
# glib
# nss
# freetype
# fontconfig.lib
# dbus.lib
# alsa-lib
# ];
}