Compare commits
No commits in common. "2a4dce6e025b81db1f131e4dfeb86d76575f0edd" and "b67bf68f0dd0d46a413ca869fbbf1775ca130d2c" have entirely different histories.
2a4dce6e02
...
b67bf68f0d
|
@ -24,7 +24,7 @@ in
|
|||
groups = [ "wheel" ];
|
||||
commands = [
|
||||
{
|
||||
command = "/run/current-system/sw/bin/nixos-rebuild";
|
||||
command = "${pkgs.nixos-rebuild}/bin/nixos-rebuild *";
|
||||
options = [ "NOPASSWD" ];
|
||||
}
|
||||
];
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
autoLogin.user = "fruchti";
|
||||
};
|
||||
security.pam.services.gdm.enableGnomeKeyring = true;
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
|
||||
services.touchegg.enable = true;
|
||||
services.gnome.gnome-settings-daemon.enable = true;
|
||||
|
|
|
@ -2,6 +2,5 @@
|
|||
{
|
||||
imports = [
|
||||
./burp.nix
|
||||
./horizon-eda.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
horizon-eda = (super.horizon-eda.overrideAttrs (old: {
|
||||
# Add an environment variable to fix redraw issues on Intel Graphics
|
||||
patches = [
|
||||
./horizon_software_draw_surface.patch
|
||||
];
|
||||
}));
|
||||
})
|
||||
];
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
diff --git a/org.horizon_eda.HorizonEDA.desktop b/org.horizon_eda.HorizonEDA.desktop
|
||||
index 7551df54..d8df7800 100644
|
||||
--- a/org.horizon_eda.HorizonEDA.desktop
|
||||
+++ b/org.horizon_eda.HorizonEDA.desktop
|
||||
@@ -5,4 +5,4 @@ Categories=Development;Engineering;Electronics;
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Icon=org.horizon_eda.HorizonEDA
|
||||
-Exec=horizon-eda %U
|
||||
+Exec=env GDK_GL=software-draw-surface horizon-eda %U
|
Loading…
Reference in a new issue