mirror of
https://git.gay/xqtc/nixos-config
synced 2025-05-01 21:07:30 +02:00
stuff
This commit is contained in:
parent
c45e23d57c
commit
35508f5423
4 changed files with 29 additions and 13 deletions
|
@ -56,6 +56,7 @@ in {
|
|||
yubioath-flutter
|
||||
element-desktop
|
||||
tuba
|
||||
droidcam
|
||||
]))
|
||||
++ (with pkgs; [
|
||||
inputs.ghostty.packages.x86_64-linux.default
|
||||
|
@ -139,7 +140,7 @@ in {
|
|||
|
||||
sayonara
|
||||
|
||||
# feishin # BUILD FAILURE
|
||||
feishin # BUILD FAILURE
|
||||
|
||||
wireguard-tools
|
||||
wireguard-ui
|
||||
|
|
|
@ -39,17 +39,17 @@
|
|||
# };
|
||||
# };
|
||||
plugins = {
|
||||
image = {
|
||||
enable = true;
|
||||
extraOptions = {
|
||||
processor = "magick_cli";
|
||||
};
|
||||
integrations = {
|
||||
neorg = {
|
||||
enabled = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
# image = {
|
||||
# enable = true;
|
||||
# extraOptions = {
|
||||
# processor = "magick_cli";
|
||||
# };
|
||||
# integrations = {
|
||||
# neorg = {
|
||||
# enabled = true;
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
transparent = {
|
||||
enable = true;
|
||||
autoLoad = true;
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
boot.kernelModules = ["v4l2loopback"];
|
||||
boot.extraModulePackages = with config.boot.kernelPackages; [v4l2loopback];
|
||||
boot.extraModprobeConfig = ''
|
||||
options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1
|
||||
options v4l2loopback devices=1 video_nr=1 card_label="Droidcam" exclusive_caps=1
|
||||
'';
|
||||
|
||||
networking.hostName = "asmodeus"; # Define your hostname.
|
||||
|
@ -196,6 +196,9 @@
|
|||
cargo
|
||||
rustc
|
||||
|
||||
gnome-tweaks
|
||||
gnome-boxes
|
||||
|
||||
wl-clipboard
|
||||
xclip
|
||||
|
||||
|
|
|
@ -20,6 +20,13 @@
|
|||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
swapDevices = [ {
|
||||
device = "/var/lib/swapfile";
|
||||
size = 8*1024;
|
||||
} ];
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.initrd.luks.devices = {
|
||||
|
@ -79,6 +86,11 @@
|
|||
# services.xserver.xkb.layout = "us";
|
||||
# services.xserver.xkb.options = "eurosign:e,caps:escape";
|
||||
|
||||
services.displayManager.ly.enable = true;
|
||||
services.displayManager.ly.settings = {
|
||||
waylandsessions = "${pkgs.sway}/share/wayland-sessions/";
|
||||
};
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
# services.printing.enable = true;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue