update lock

This commit is contained in:
2026-01-05 20:32:55 -06:00
parent 036969de6e
commit 4e3d74795b
16 changed files with 422 additions and 1096 deletions

View File

@@ -17,7 +17,7 @@
config = {
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_6_16;
kernelPackages = pkgs.linuxKernel.packages.linux_6_18;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
@@ -25,19 +25,6 @@
binfmt.emulatedSystems = lib.mkIf config.sysconfig.remoteBuildHost [ "aarch64-linux" ];
};
hardware = {
nvidia = {
modesetting.enable = true;
open = false;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
bluetooth.enable = true;
};
services = {
xserver = {
enable = false;

View File

@@ -1,4 +1,4 @@
{ config, lib, inputs, ... }: {
{ config, lib, nixpkgs-us, ... }: {
options = {
sysconfig.services.ollama.enable = lib.options.mkOption {
@@ -12,7 +12,7 @@
enable = true;
acceleration = "cuda";
package = let
pkgs-us = import inputs.nixpkgs-us {
pkgs-us = import nixpkgs-us {
system = "x86_64-linux";
config.allowUnfree = true;
};

View File

@@ -85,7 +85,7 @@
pkgs-us.mpv
vlc
pavucontrol
rpi-imager
#rpi-imager
tigervnc
keepassxc

View File

@@ -11,12 +11,6 @@
home.packages = [
#scripts
(pkgs.writeShellScriptBin "_systemRebuild" ''
${pkgs.nh}/bin/nh os switch --ask
echo //////Enter to close//////
read
'')
(pkgs.writeShellScriptBin "randWallpaper" ''
file=''$(ls ${config.home.homeDirectory}/Pictures/Wallpaper/ | shuf -n 1)
@@ -106,14 +100,7 @@
#tmux new-session -s hyprland
'')
] ++ (if config.homeconfig.standalone.enable then [
(pkgs.writeShellScriptBin "_homeRebuild" ''
${pkgs.nh}/bin/nh home switch --ask
echo //////Enter to close//////
read
'')
] else []);
];
};
}

View File

@@ -13,7 +13,7 @@
./firefox
];
config = lib.mkIf (config.homeconfig.host != "android") {
config = {
home.packages = lib.mkIf (!config.homeconfig.wal.enable) [
inputs.nixvim.packages.${pkgs.system}.default