added kernel

This commit is contained in:
kenji
2025-12-25 08:53:23 -06:00
parent c604816aa9
commit 2d9f95e8e5
6 changed files with 21 additions and 9 deletions
+1
View File
@@ -1,6 +1,7 @@
{
pkgs,
myConfig,
inputs,
...
}: {
programs.firefox = {
+6
View File
@@ -11,6 +11,12 @@
stylix = {
autoEnable = false;
targets = {
firefox = {
enable = true;
profileNames = [
"hakase"
];
};
waybar.enable = true;
ghostty.enable = true;
hyprpaper.enable = true;
+1
View File
@@ -3,6 +3,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
elephant.url = "github:abenz1267/elephant";
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
home-manager = {
url = "github:nix-community/home-manager";
+1
View File
@@ -12,6 +12,7 @@
../../system/programs.nix
../../system/security.nix
../../system/variables.nix
../../system/kernel.nix
];
environment.systemPackages = with pkgs; [
# FIXME: must be on their own app
+1 -9
View File
@@ -2,15 +2,7 @@
boot = {
consoleLogLevel = 3;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"intremap=on"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
loader = {
loader = {
systemd-boot = {
enable = true;
};
+11
View File
@@ -0,0 +1,11 @@
{pkgs, ...}: {
kernelPackages = pkgs.linuxPackages_cachyos; # from chaotic input
kernelParams = [
"quiet"
"splash"
"intremap=on"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
}