mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
added ways to use different branches of nixpkgs made unfree packages have to specified switched to nix master branch moved sxhkd from a seperate flake switched spotify and maim versions because both are broken on nixos-unstable right now moved afk-cmds from local to remote added flake-utils for easier devShell decleration switched my mom's laptop to stable branch
28 lines
674 B
Nix
28 lines
674 B
Nix
_: {
|
||
environment.etc = {
|
||
"issue" = {
|
||
text = "[?12l[?25h";
|
||
mode = "0444";
|
||
};
|
||
};
|
||
boot = {
|
||
blacklistedKernelModules = ["nouveau" "lbm-nouveau" "pcspkr"];
|
||
kernelParams = ["fbcon=nodefer" "bgrt_disable" "quiet" "systemd.show_status=false" "rd.udev.log_level=3" "vt.global_cursor_default=0"];
|
||
consoleLogLevel = 0;
|
||
initrd.verbose = false;
|
||
plymouth = {
|
||
enable = true;
|
||
theme = "breeze";
|
||
logo = ../images/nixos.png;
|
||
};
|
||
loader = {
|
||
systemd-boot = {
|
||
enable = true;
|
||
consoleMode = "max";
|
||
editor = false;
|
||
};
|
||
efi.canTouchEfiVariables = true;
|
||
timeout = 0;
|
||
};
|
||
};
|
||
}
|