updated flake inputs, fixed evaluation warnings
removed the neon configuration from the flake
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
{ inputs, nixpkgs, nixvim, config, self, username, host, ... }: {
|
||||
imports = [ (import ./bootloader.nix) ] ++ [ (import ./network.nix) ]
|
||||
++ [ (import ./powerprofiles.nix) ];
|
||||
++ [ (import ./powerprofiles.nix) ]
|
||||
++ [ (import ./kernel.nix) ];
|
||||
}
|
||||
|
||||
15
modules/sys/hardware/kernel.nix
Normal file
15
modules/sys/hardware/kernel.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ lib, config, pkgs, ... }: {
|
||||
options = {
|
||||
movOpts.hardwareCfg.kernelModule.enable = lib.mkEnableOption "enables kernel module configuration";
|
||||
};
|
||||
config = lib.mkIf config.movOpts.hardwareCfg.kernelModule.enable {
|
||||
hardware.enableAllFirmware = true;
|
||||
environment.systemPackages = [
|
||||
pkgs.linux-firmware
|
||||
];
|
||||
boot.kernelModules = [
|
||||
"amdgpu"
|
||||
"rtw89_8852ce"
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -31,7 +31,7 @@
|
||||
nixos-option
|
||||
nix-search-cli
|
||||
nix-template
|
||||
nixfmt
|
||||
nixfmt-classic
|
||||
sshfs
|
||||
nvd
|
||||
pamixer
|
||||
@@ -48,9 +48,6 @@
|
||||
file
|
||||
pkg-config
|
||||
openssl
|
||||
openssl_3
|
||||
openssl_3_0
|
||||
openssl_3_3
|
||||
libvirt-glib
|
||||
man-pages
|
||||
man-pages-posix
|
||||
|
||||
@@ -30,6 +30,7 @@ in {
|
||||
cursor = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Ice";
|
||||
size = 24;
|
||||
};
|
||||
fonts = {
|
||||
monospace = {
|
||||
|
||||
Reference in New Issue
Block a user