This commit is contained in:
sadan 2024-11-26 17:01:58 -05:00
parent 59ee516926
commit 5a3af882ec
No known key found for this signature in database
61 changed files with 705 additions and 562 deletions

View file

@ -9,6 +9,5 @@
efiInstallAsRemovable = true;
};
};
kernelPackages = pkgs.linuxPackages_latest;
};
}

View file

@ -0,0 +1,5 @@
{pkgs, ...}: {
boot = {
kernelPackages = pkgs.linuxPackages_latest;
};
}

View file

@ -1,4 +1,8 @@
{ NAME }: { ... }: {
environment.systemPackages = with pkgs; [
polychromatic
];
hardware = {
openrazer = {
enable = true;

View file

@ -3,6 +3,9 @@
imports = [
inputs.stylix.nixosModules.stylix
];
environment.systemPackages = with pkgs; [
nerdfonts
];
stylix = {
enable = true;
image = ./wallpaper.jpg;

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
wsl = {
enable = true;
defaultUser = "meyer";
}
}