diff --git a/home-manager/machines/grymforge.nix b/home-manager/machines/grymforge.nix index a1fb824..e4c58e7 100644 --- a/home-manager/machines/grymforge.nix +++ b/home-manager/machines/grymforge.nix @@ -25,7 +25,6 @@ ../modules/devenv.nix ../modules/gh-dash.nix ../modules/ssh.nix - ../modules/obsidian.nix ]; nixpkgs = { @@ -42,11 +41,6 @@ neovim = inputs.neovim-config.packages."x86_64-linux".default; }) - # obsidian electron build issue - (final: prev: { - obsidian-wayland = prev.obsidian.override {electron = final.electron_24;}; - }) - # Or define it inline, for example: # (final: prev: { # hi = final.hello.overrideAttrs (oldAttrs: { diff --git a/home-manager/modules/hyprland.nix b/home-manager/modules/hyprland.nix index 091b4d9..6dce7d2 100644 --- a/home-manager/modules/hyprland.nix +++ b/home-manager/modules/hyprland.nix @@ -206,7 +206,7 @@ ]; timeouts = [ { - timeout = 300; + timeout = 1800; command = "${pkgs.swaylock}/bin/swaylock -f"; } ]; diff --git a/home-manager/modules/linux-gui.nix b/home-manager/modules/linux-gui.nix index a083b90..379b531 100644 --- a/home-manager/modules/linux-gui.nix +++ b/home-manager/modules/linux-gui.nix @@ -14,7 +14,7 @@ element-desktop # A feature-rich client for Matrix.org gimp # GNU Image Manipulation Program, a powerful and open-source raster graphics editor for tasks like photo editing and graphic design. gparted # Gnome Partition Editor, a graphical partition manager for creating, resizing, and managing disk partitions. - kicad # An open-source electronic design automation (EDA) suite for creating schematics, PCB layouts, and 3D models. + # kicad # An open-source electronic design automation (EDA) suite for creating schematics, PCB layouts, and 3D models. kodi # An open-source media center, providing a versatile platform for streaming and organizing media content. pavucontrol # PulseAudio Volume Control, a feature-rich GUI for controlling and configuring the PulseAudio sound system. #sublime-music # A modern and feature-rich music player with a clean user interface and advanced playback options. @@ -22,5 +22,6 @@ wireshark # Open-source network protocol analyzer for real-time packet inspection and analysis. nicotine-plus anki + obsidian ]; } diff --git a/home-manager/modules/obsidian.nix b/home-manager/modules/obsidian.nix deleted file mode 100644 index b8f8174..0000000 --- a/home-manager/modules/obsidian.nix +++ /dev/null @@ -1,9 +0,0 @@ -{pkgs, ...}: { - nixpkgs.config = { - allowUnfree = true; - permittedInsecurePackages = [ - "electron-24.8.6" - ]; - }; - home.packages = with pkgs; [obsidian-wayland]; -}