This commit is contained in:
Lucy von Overheidt 2025-09-12 20:53:18 +02:00
parent ab7cd37efb
commit a2890ed58a
8 changed files with 163 additions and 75 deletions

33
modules/binfmt.nix Normal file
View file

@ -0,0 +1,33 @@
{ ... }:
{
boot.binfmt.emulatedSystems = [
"aarch64-linux"
"aarch64_be-linux"
"alpha-linux"
"armv6l-linux"
"armv7l-linux"
"i386-linux"
"i486-linux"
"i586-linux"
"i686-linux"
"i686-windows"
"loongarch64-linux"
"mips-linux"
"mips64-linux"
"mips64-linuxabin32"
"mips64el-linux"
"mips64el-linuxabin32"
"mipsel-linux"
"powerpc-linux"
"powerpc64-linux"
"powerpc64le-linux"
"riscv32-linux"
"riscv64-linux"
"s390x-linux"
"sparc-linux"
"sparc64-linux"
"wasm32-wasi"
"wasm64-wasi"
"x86_64-windows"
];
}

16
modules/boot.nix Normal file
View file

@ -0,0 +1,16 @@
{ lib, ... }:
{
nixos-boot = {
enable = true;
# Different colors
# bgColor.red = 100; # 0 - 255
# bgColor.green = 100; # 0 - 255
# bgColor.blue = 100; # 0 - 255
# If you want to make sure the theme is seen when your computer starts too fast
# duration = 3; # in seconds
};
boot.plymouth.theme = lib.mkForce "load_unload";
}

View file

@ -1,6 +1,7 @@
{ config
, pkgs
, ...
{
config,
pkgs,
...
}:
{
imports = [
@ -128,6 +129,8 @@
jetbrains.idea-community
jdk
gradle
dust
];
# basic configuration of git, please change to your own
programs.git = {

View file

@ -14,10 +14,12 @@
substituters = [
"https://nix-gaming.cachix.org"
"https://attic.mildlyfunctional.gay/nixbsd"
"https://ai.cachix.org"
];
trusted-public-keys = [
"nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="
"nixbsd:gwcQlsUONBLrrGCOdEboIAeFq9eLaDqfhfXmHZs1mgc="
"ai.cachix.org-1:N9dzRK+alWwoKXQlnn0H6aUx0lU/mspIoz8hMvGvbbc="
];
};
}

View file

@ -1,10 +1,17 @@
{ pkgs
, inputs
, ...
{
pkgs,
inputs,
...
}:
{
programs.mpvpaper = {
programs.wpaperd = {
enable = true;
settings = {
eDP-1 = {
path = ../assets/wp6553608.jpg;
apply-shadow = true;
};
};
};
}