mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
Update flakes, fix build errors for Yukari
This commit is contained in:
parent
cdceb9d13d
commit
202fd41bec
15 changed files with 324 additions and 88 deletions
|
|
@ -1,3 +1,30 @@
|
|||
_: {
|
||||
boot.loader.grub.splashImage = ./splash.jpg;
|
||||
boot.loader = {
|
||||
timeout = -1;
|
||||
grub = {
|
||||
# theme = pkgs.nixos-grub2-theme; # so like, this turbo-breaks the fuck out of GRUB, i have no clue why?
|
||||
splashImage = ./splash.jpg;
|
||||
extraConfig = ''
|
||||
set color_normal=black/black
|
||||
set menu_color_normal=black/black
|
||||
set menu_color_highlight=magenta/cyan
|
||||
'';
|
||||
memtest86.enable = true;
|
||||
extraEntries = ''
|
||||
if [ ''${grub_platform} == "efi" ]; then
|
||||
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
|
||||
fwsetup
|
||||
}
|
||||
fi
|
||||
menuentry "System restart" {
|
||||
echo "System rebooting..."
|
||||
reboot
|
||||
}
|
||||
menuentry "System shutdown" {
|
||||
echo "System shutting down..."
|
||||
halt
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
7
nixos/profiles/gaming/quest.nix
Normal file
7
nixos/profiles/gaming/quest.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
questpatcher
|
||||
sidequest
|
||||
];
|
||||
programs.adb.enable = true;
|
||||
}
|
||||
|
|
@ -4,11 +4,13 @@
|
|||
...
|
||||
}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
android-udev-rules
|
||||
jmtpfs
|
||||
dnsutils
|
||||
firefox
|
||||
usbutils
|
||||
inputs.konawall-py.packages.${pkgs.system}.konawall-py
|
||||
];
|
||||
services.udev.packages = [
|
||||
pkgs.android-udev-rules
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
{config, ...}: {
|
||||
# Allow services to persist for a user after their sessions have ran out
|
||||
systemd.tmpfiles.rules = set.mapToValues (username: _: "f /var/lib/systemd/linger/${username}") config.users.users;
|
||||
}
|
||||
|
|
@ -4,7 +4,7 @@ _: {
|
|||
ensureUsers = [
|
||||
{
|
||||
name = "bitwarden_rs";
|
||||
ensurePermissions = {"DATABASE bitwarden_rs" = "ALL PRIVILEGES";};
|
||||
ensureDBOwnership = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue