bump
This commit is contained in:
parent
b9c383a417
commit
e0f929d412
4 changed files with 16 additions and 11 deletions
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -107,11 +107,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1714605578,
|
"lastModified": 1714699878,
|
||||||
"narHash": "sha256-Zr43qQZ7T5zyuJcRXXXhmd7SlB13DKVUc6VY9N/hkk4=",
|
"narHash": "sha256-JJBSyecUyUHR9Y0Ghw+rPP3xWjw+m6p8QCWNxHtlp+w=",
|
||||||
"owner": "lilyinstarlight",
|
"owner": "lilyinstarlight",
|
||||||
"repo": "nixos-cosmic",
|
"repo": "nixos-cosmic",
|
||||||
"rev": "b5f4b34f6538d22688b279d0fa5455f752f94a72",
|
"rev": "81e4082431d4ef56d127107b18fb0eee95677782",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -122,11 +122,11 @@
|
||||||
},
|
},
|
||||||
"nixos-hardware": {
|
"nixos-hardware": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1714465198,
|
"lastModified": 1714746424,
|
||||||
"narHash": "sha256-ySkEJvS0gPz2UhXm0H3P181T8fUxvDVcoUyGn0Kc5AI=",
|
"narHash": "sha256-Jdyw7VcM+jQ0uSXgjFj8UdXZ229yOvPNlYkKyKyHA4s=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixos-hardware",
|
"repo": "nixos-hardware",
|
||||||
"rev": "68d680c1b7c0e67a9b2144d6776583ee83664ef4",
|
"rev": "3f017311191fe6d501ca2496a835d012f656ee9c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
openrgb
|
openrgb
|
||||||
];
|
];
|
||||||
|
|
||||||
services.displayManager.defaultSession = "plasma";
|
|
||||||
services.tailscale.useRoutingFeatures = "both";
|
services.tailscale.useRoutingFeatures = "both";
|
||||||
boot.kernel.sysctl."net.ipv4.ip_forward" = "1";
|
boot.kernel.sysctl."net.ipv4.ip_forward" = "1";
|
||||||
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = "1";
|
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = "1";
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,16 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
boot.kernelPatches = [
|
||||||
|
(lib.mkIf (lib.versionOlder pkgs.linuxPackages_latest.kernel.version "6.9")
|
||||||
|
{
|
||||||
|
name = "cros_ec_lpc";
|
||||||
|
patch = pkgs.fetchpatch {
|
||||||
|
url = "https://patchwork.kernel.org/series/840830/mbox/";
|
||||||
|
sha256 = "sha256-7jSEAGInFC+a+ozCyD4dFz3Qgh2JrHskwz7UfswizFw=";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
# nixpkgs.overlays = [
|
# nixpkgs.overlays = [
|
||||||
# (final: prev: {
|
# (final: prev: {
|
||||||
# libinput = prev.libinput.overrideAttrs (old: {
|
# libinput = prev.libinput.overrideAttrs (old: {
|
||||||
|
|
@ -32,7 +42,6 @@
|
||||||
services.fwupd.enable = true;
|
services.fwupd.enable = true;
|
||||||
services.tailscale.useRoutingFeatures = "client";
|
services.tailscale.useRoutingFeatures = "client";
|
||||||
systemd.services."backlight@backlight:amdgpu_bl2".enable = false;
|
systemd.services."backlight@backlight:amdgpu_bl2".enable = false;
|
||||||
services.displayManager.defaultSession = "plasmawayland";
|
|
||||||
|
|
||||||
environment.etc = {
|
environment.etc = {
|
||||||
"libinput/local-overrides.quirks".text = "
|
"libinput/local-overrides.quirks".text = "
|
||||||
|
|
@ -47,8 +56,6 @@
|
||||||
AttrKeyboardIntegration=internal";
|
AttrKeyboardIntegration=internal";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.displayManager.defaultSession = "plasma";
|
|
||||||
|
|
||||||
nix.buildMachines = [
|
nix.buildMachines = [
|
||||||
{
|
{
|
||||||
hostName = "nocomputer";
|
hostName = "nocomputer";
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@
|
||||||
services.fprintd.enable = true;
|
services.fprintd.enable = true;
|
||||||
hardware.sensor.iio.enable = true;
|
hardware.sensor.iio.enable = true;
|
||||||
|
|
||||||
services.displayManager.defaultSession = "plasma";
|
|
||||||
services.displayManager.sddm.wayland.enable = true;
|
services.displayManager.sddm.wayland.enable = true;
|
||||||
|
|
||||||
# systemd.user.services.backlight = {
|
# systemd.user.services.backlight = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue