fix eval warnings

This commit is contained in:
Schrottkatze 2025-03-20 17:27:45 +01:00
parent d545dc682e
commit f71fed2884
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo
5 changed files with 4 additions and 26 deletions

View file

@ -40,12 +40,6 @@
networking.hostName = "monosodium-glutamate-g"; networking.hostName = "monosodium-glutamate-g";
services = { services = {
xserver = {
layout = "us";
xkbVariant = "altgr-intl";
enable = true;
};
openssh.settings.PermitRootLogin = "without-password"; openssh.settings.PermitRootLogin = "without-password";
blueman.enable = true; blueman.enable = true;

View file

@ -1,6 +1,6 @@
{pkgs, ...}: { {pkgs, ...}: {
environment.systemPackages = [ environment.systemPackages = [
pkgs.nvtop-amd pkgs.nvtopPackages.amd
pkgs.radeontop pkgs.radeontop
pkgs.rgp pkgs.rgp
]; ];

View file

@ -67,24 +67,10 @@
services.libinput.touchpad = { services.libinput.touchpad = {
disableWhileTyping = true; disableWhileTyping = true;
tapping = false;
}; };
networking.networkmanager.enable = true;
networking.hostName = "potatobook-g"; networking.hostName = "potatobook-g";
services.xserver = {
resolutions = [
{
x = 1920;
y = 1200;
}
];
# dpi = 180;
layout = "us";
xkbVariant = "altgr-intl";
};
services.autorandr = { services.autorandr = {
enable = true; enable = true;
profiles = { profiles = {

View file

@ -15,7 +15,8 @@
hash = "sha256-SzAuVFEy56svasO3+1p6ysBRrIQd0UZX++/P4ZuwWm0="; hash = "sha256-SzAuVFEy56svasO3+1p6ysBRrIQd0UZX++/P4ZuwWm0=";
}; };
cargoHash = "sha256-liWP6AI72xG1O+MbCZ0cjJ2llHj/iv3hR/U3BLv5fKA="; useFetchCargoVendor = true;
cargoHash = "sha256-QVxlkE+sq4U048LnshI/tq6HInKiSgjQLAdR+27/wEI=";
meta = with lib; { meta = with lib; {
description = "Layout creation for Sway via a relative and human-readable DSL."; description = "Layout creation for Sway via a relative and human-readable DSL.";

View file

@ -14,11 +14,8 @@
rev = "4480c4eda223b98899b0fbd926bc34f7bd0e1a18"; rev = "4480c4eda223b98899b0fbd926bc34f7bd0e1a18";
sha256 = "sha256-BxSrphgW1n465FX6bKVkq6O0XE2JqanfSYlsGwWUWkQ="; sha256 = "sha256-BxSrphgW1n465FX6bKVkq6O0XE2JqanfSYlsGwWUWkQ=";
}; };
useFetchCargoVendor = true;
cargoHash = ""; cargoHash = "";
cargoLock.lockFile = ../../other/evremap.Cargo.lock;
postPatch = ''
cp ${../../other/evremap.Cargo.lock} Cargo.lock
'';
nativeBuildInputs = [pkgs.pkg-config]; nativeBuildInputs = [pkgs.pkg-config];
buildInputs = [pkgs.libevdev]; buildInputs = [pkgs.libevdev];
}; };