chore(3p/sources): bump channels & overlays (2024-09-01)
Included changes: * users/aspen: explicitly use open-source nvidia driver This now has to be specified explicitly, otherwise evaluation fails with an error. * users/aspen: nixfmt -> nixfmt-classic * users/aspen: fixes for renamed packages & options * users/tazjin: fixes for renamed packages & options * 3p/overlays: remove cbtemulator patch (merged upstream) * tvix/shell: remove unnecessary patches (merged upstream) * 3p/rust-crates: mark libgit2_sys as broken * users/Profpatsch: mark git-db as broken * 3p/overlays: pick `mypaint` from stable channel * tvix: fix comments that clippy doesn't like anymore * tvix/glue: disable a misfiring clippy lint (applying its suggestion breaks code below) Change-Id: I6d3fc027694bbe7425a2d25dc53d65467a44f3b0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12403 Tested-by: BuildkiteCI Reviewed-by: aspen <root@gws.fyi> Reviewed-by: Profpatsch <mail@profpatsch.de> Autosubmit: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
200d49a0e1
commit
609b68031b
19 changed files with 56 additions and 198 deletions
|
|
@ -1,10 +1,12 @@
|
|||
{ depot, pkgs, lib, ... }:
|
||||
|
||||
depot.nix.writers.rustSimple
|
||||
{
|
||||
name = "git-db";
|
||||
dependencies = [
|
||||
depot.third_party.rust-crates.git2
|
||||
];
|
||||
(depot.nix.writers.rustSimple
|
||||
{
|
||||
name = "git-db";
|
||||
dependencies = [
|
||||
depot.third_party.rust-crates.git2
|
||||
];
|
||||
}
|
||||
(builtins.readFile ./git-db.rs)) // {
|
||||
meta.broken = true;
|
||||
}
|
||||
(builtins.readFile ./git-db.rs)
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ in
|
|||
openssl
|
||||
|
||||
# Nix things
|
||||
nixfmt
|
||||
nixfmt-classic
|
||||
nix-prefetch-github
|
||||
nixpkgs-review
|
||||
cachix
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
openssl
|
||||
|
||||
# Nix things
|
||||
nixfmt
|
||||
nixfmt-classic
|
||||
nix-prefetch-github
|
||||
nixpkgs-review
|
||||
cachix
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@
|
|||
vSync = true;
|
||||
};
|
||||
hardware.graphics.enable32Bit = true;
|
||||
hardware.nvidia.open = true;
|
||||
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
|
|
@ -90,8 +91,8 @@
|
|||
authentication = "host all all 0.0.0.0/0 md5";
|
||||
dataDir = "/data/postgresql";
|
||||
package = pkgs.postgresql_15;
|
||||
port = 5431;
|
||||
settings = {
|
||||
port = 5431;
|
||||
wal_level = "logical";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -66,8 +66,6 @@ in
|
|||
mouse.naturalScrolling = false;
|
||||
mouse.disableWhileTyping = true;
|
||||
};
|
||||
# services.xserver.libinput.touchpad.clickMethod = "clickfinger";
|
||||
# services.xserver.libinput.touchpad.tapping = false;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
system.stateVersion = "24.11";
|
||||
|
|
|
|||
|
|
@ -14,11 +14,7 @@
|
|||
libinput.enable = true;
|
||||
|
||||
xserver = {
|
||||
enable = true;
|
||||
xkb.layout = "us";
|
||||
xkb.options = "caps:super";
|
||||
|
||||
displayManager.sessionPackages = [ pkgs.niri ];
|
||||
enable = true; # wayland doesn't work otherwise ...?!
|
||||
displayManager.gdm = {
|
||||
enable = true;
|
||||
wayland = true;
|
||||
|
|
@ -26,6 +22,8 @@
|
|||
};
|
||||
};
|
||||
|
||||
services.displayManager.sessionPackages = [ pkgs.niri ];
|
||||
|
||||
programs.xwayland.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -74,8 +74,8 @@ in
|
|||
graphics.enable = true;
|
||||
};
|
||||
|
||||
services.xserver.libinput.touchpad.clickMethod = "clickfinger";
|
||||
services.xserver.libinput.touchpad.tapping = false;
|
||||
services.libinput.touchpad.clickMethod = "clickfinger";
|
||||
services.libinput.touchpad.tapping = false;
|
||||
services.avahi.enable = true;
|
||||
services.tailscale.enable = true;
|
||||
|
||||
|
|
|
|||
|
|
@ -50,13 +50,14 @@ in
|
|||
interval = "1d";
|
||||
};
|
||||
|
||||
libinput = {
|
||||
enable = true;
|
||||
touchpad.naturalScrolling = false;
|
||||
touchpad.tapping = false;
|
||||
};
|
||||
|
||||
xserver = {
|
||||
enable = true;
|
||||
libinput = {
|
||||
enable = true;
|
||||
touchpad.naturalScrolling = false;
|
||||
touchpad.tapping = false;
|
||||
};
|
||||
xkb.layout = "us";
|
||||
xkb.options = "caps:escape";
|
||||
displayManager = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue