diff options
| author | adikro <adikro@disroot.org> | 2025-11-15 15:13:52 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-11-15 15:13:52 +0100 |
| commit | 2a7dad74475f6afbd884df44cd49b694c3777490 (patch) | |
| tree | 392b48f84a1576b80eba1194baf71df963cc23a3 | |
| parent | 4e3c8eff1407291ce64254d3eeed8de5f9677a0b (diff) | |
optimized boot times
| -rw-r--r-- | flake.lock | 18 | ||||
| -rw-r--r-- | home/editors/nixvim.nix | 18 | ||||
| -rw-r--r-- | hosts/desktop/configuration.nix | 1 | ||||
| -rw-r--r-- | modules/networking.nix | 2 | ||||
| -rw-r--r-- | modules/virtualization.nix | 4 |
5 files changed, 29 insertions, 14 deletions
@@ -378,11 +378,11 @@ ] }, "locked": { - "lastModified": 1762964643, - "narHash": "sha256-RYHN8O/Aja59XDji6WSJZPkJpYVUfpSkyH+PEupBJqM=", + "lastModified": 1763198244, + "narHash": "sha256-oLugbe2pJv39BjWg7kAljn6vUxjVr/ArkITDX8fFd2Y=", "owner": "nix-community", "repo": "home-manager", - "rev": "827f2a23373a774a8805f84ca5344654c31f354b", + "rev": "c3bc79be5ee97455262c6c677bbf065eed07948c", "type": "github" }, "original": { @@ -1105,11 +1105,11 @@ "systems": "systems_4" }, "locked": { - "lastModified": 1763109970, - "narHash": "sha256-3azi7sNWVxHiUGMPcEwsd3ErYoMEdLRX/JmgoYEe+os=", + "lastModified": 1763212728, + "narHash": "sha256-XVK0A+Le5vDSwAiwpNTRLM50HbwjpPVWnYelCUhAkjI=", "owner": "nix-community", "repo": "nixvim", - "rev": "6c2ac251d7cfc2416f23257df13c86d84d3eee34", + "rev": "074c68468cc4751efa9ac3f65b2e63e4ad409b7a", "type": "github" }, "original": { @@ -1314,11 +1314,11 @@ "rust-overlay": "rust-overlay_5" }, "locked": { - "lastModified": 1763137684, - "narHash": "sha256-BxMI/dC/PmSNj90+WNvkPzIk8lC8oZCTiSdPfiDfmRA=", + "lastModified": 1763185597, + "narHash": "sha256-pyGoCuv3Dn1QCKs3jQ7ZJfC1kiuAtMBKJDWDGUO/5/Q=", "owner": "gabm", "repo": "Satty", - "rev": "6c3434fa3688b626ad0ee07373c1822cf00bcc82", + "rev": "e9b0ecd4fc1ae8893c6c5078c0325e3848f00733", "type": "github" }, "original": { diff --git a/home/editors/nixvim.nix b/home/editors/nixvim.nix index 17ea2ec..42207ac 100644 --- a/home/editors/nixvim.nix +++ b/home/editors/nixvim.nix @@ -30,11 +30,23 @@ }; }; }; + + notify = { + enable = true; + settings = { + backgroundColour = "#1e1e2e"; + fps = 60; + render = "default"; + timeout = 500; + topDown = true; + }; + }; + hardtime = { - enable = false; + enable = true; settings = { - disableMouse = true; - enabled = false; + # disableMouse = true; + # enabled = false; restrictionMode = "hint"; hint = true; maxCount = 40; diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index dd474cb..17dae8e 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -124,6 +124,7 @@ environment.sessionVariables = { swayidle fuzzel bemenu + helvum wineWowPackages.waylandFull winetricks diff --git a/modules/networking.nix b/modules/networking.nix index f33afa8..ad4ea26 100644 --- a/modules/networking.nix +++ b/modules/networking.nix @@ -1,6 +1,8 @@ { ... }: { + systemd.network.wait-online.enable = false; + boot.initrd.systemd.network.wait-online.enable = false; networking = { hostName = "szpont"; diff --git a/modules/virtualization.nix b/modules/virtualization.nix index 2f7c54b..eea29f4 100644 --- a/modules/virtualization.nix +++ b/modules/virtualization.nix @@ -10,11 +10,11 @@ }; docker = { - enable = true; + enable = false; extraPackages = with pkgs; [ docker-compose ]; }; - containerd.enable = true; + containerd.enable = false; }; programs.virt-manager.enable = true; |
