linux_6_19 form last nixpkgs rev before removal
This commit is contained in:
Generated
+17
@@ -328,6 +328,22 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nixpkgs-linuxeol": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1776914381,
|
||||||
|
"narHash": "sha256-F4YjgKNs1kEIfTsinPDusep2Y+GDFK+3R2AujSZQ18M=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "162f04bf3dd222187388bc990a8678170d594419",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "162f04bf3dd222187388bc990a8678170d594419",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"ntfsplus": {
|
"ntfsplus": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"linux-ntfs": "linux-ntfs",
|
"linux-ntfs": "linux-ntfs",
|
||||||
@@ -428,6 +444,7 @@
|
|||||||
"nix-sweep": "nix-sweep",
|
"nix-sweep": "nix-sweep",
|
||||||
"nixos-hardware": "nixos-hardware",
|
"nixos-hardware": "nixos-hardware",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
|
"nixpkgs-linuxeol": "nixpkgs-linuxeol",
|
||||||
"ntfsplus": "ntfsplus",
|
"ntfsplus": "ntfsplus",
|
||||||
"peerix": "peerix",
|
"peerix": "peerix",
|
||||||
"plasma-manager": "plasma-manager"
|
"plasma-manager": "plasma-manager"
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
|
nixpkgs-linuxeol.url = "github:NixOS/nixpkgs/162f04bf3dd222187388bc990a8678170d594419";
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/master";
|
url = "github:nix-community/home-manager/master";
|
||||||
|
|||||||
+2
-2
@@ -1,4 +1,4 @@
|
|||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, nixpkgs-linuxeol, ... }:
|
||||||
|
|
||||||
rec {
|
rec {
|
||||||
# Identity
|
# Identity
|
||||||
@@ -23,7 +23,7 @@ rec {
|
|||||||
|
|
||||||
# Kernel
|
# Kernel
|
||||||
# boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
# boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||||
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_19;
|
boot.kernelPackages = nixpkgs-linuxeol.legacyPackages."x86_64-linux".linuxKernel.packages.linux_6_19;
|
||||||
boot.zfs.package = pkgs.zfs_unstable;
|
boot.zfs.package = pkgs.zfs_unstable;
|
||||||
|
|
||||||
# Swap
|
# Swap
|
||||||
|
|||||||
+8
-2
@@ -1,4 +1,4 @@
|
|||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, nixpkgs-linuxeol, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Identity
|
# Identity
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
|
|
||||||
# Kernel
|
# Kernel
|
||||||
# boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
# boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||||
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_19;
|
boot.kernelPackages = nixpkgs-linuxeol.legacyPackages."x86_64-linux".linuxKernel.packages.linux_6_19;
|
||||||
|
|
||||||
# Swap
|
# Swap
|
||||||
zramSwap = {
|
zramSwap = {
|
||||||
@@ -129,8 +129,14 @@
|
|||||||
};
|
};
|
||||||
services.transmission.enable = lib.mkForce false;
|
services.transmission.enable = lib.mkForce false;
|
||||||
|
|
||||||
|
# programs.steam.enable = true;
|
||||||
|
# programs.steam.gamescopeSession.enable = true;
|
||||||
|
|
||||||
nix.settings.system-features = [ "gccarch-haswell" ];
|
nix.settings.system-features = [ "gccarch-haswell" ];
|
||||||
|
|
||||||
|
# Local LLaMA.cpp server
|
||||||
|
networking.firewall.allowedTCPPorts = [ 8080 ];
|
||||||
|
|
||||||
# nixpkgs.hostPlatform = {
|
# nixpkgs.hostPlatform = {
|
||||||
# system = "x86_64-linux";
|
# system = "x86_64-linux";
|
||||||
# gcc.arch = "haswell";
|
# gcc.arch = "haswell";
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
acer-wmi-ext,
|
acer-wmi-ext,
|
||||||
ntfsplus,
|
ntfsplus,
|
||||||
nix-skills,
|
nix-skills,
|
||||||
|
nixpkgs-linuxeol,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
hardwareConfig: hostConfig:
|
hardwareConfig: hostConfig:
|
||||||
@@ -21,6 +22,7 @@ nixpkgs.lib.nixosSystem {
|
|||||||
inherit nix-flatpak;
|
inherit nix-flatpak;
|
||||||
inherit plasma-manager;
|
inherit plasma-manager;
|
||||||
inherit acer-wmi-ext;
|
inherit acer-wmi-ext;
|
||||||
|
inherit nixpkgs-linuxeol;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user