diff --git a/SwarselSystems.org b/SwarselSystems.org index f5e95c2..e04006f 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -412,9 +412,8 @@ A short overview over each input and what it does: swarsel-modules.url = "github:Swarsel/swarsel-modules/main"; swarsel-nix.url = "github:Swarsel/swarsel-nix/main"; home-manager = { - # url = "github:nix-community/home-manager"; - # url = "github:Swarsel/home-manager/main"; - url = "github:JuneStepp/home-manager/anki-fix-booleans"; + url = "github:nix-community/home-manager"; + # url = "github:Swarsel/home-manager/module/pizauth"; inputs.nixpkgs.follows = "nixpkgs"; }; swarsel.url = "github:Swarsel/.dotfiles"; @@ -1989,8 +1988,8 @@ My work machine. Built for more security, this is the gold standard of my config # ''; boot = { - kernelPackages = lib.mkDefault pkgs.kernel.linuxPackages; - # kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; + # kernelPackages = lib.mkDefault pkgs.kernel.linuxPackages; + kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; binfmt.emulatedSystems = [ "aarch64-linux" ]; initrd = { availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "cryptd" "usbhid" "sd_mod" "r8152" ]; @@ -2006,8 +2005,7 @@ My work machine. Built for more security, this is the gold standard of my config kernelModules = [ "kvm-amd" ]; kernelParams = [ - # deep sleep is discontinued by amd - # "mem_sleep_default=deep" + "mem_sleep_default=deep" # supposedly, this helps save power on laptops # in reality (at least on this model), this just generate excessive heat on the CPUs # "amd_pstate=passive" @@ -4227,7 +4225,6 @@ We enable the use of =home-manager= as a NixoS module. A nice trick here is the useGlobalPkgs = true; useUserPackages = true; verbose = true; - backupFileExtension = "hm-bak"; users.${config.swarselsystems.mainUser}.imports = [ inputs.nix-index-database.homeModules.nix-index inputs.sops-nix.homeManagerModules.sops @@ -4641,102 +4638,99 @@ This section is for setting things that should be used on hosts that are using t Mostly used to install some compilers and lsp's that I want to have available when not using a devShell flake. Most other packages should go in [[#h:893a7f33-7715-415b-a895-2687ded31c18][Installed packages]]. #+begin_src nix-ts :tangle modules/nixos/client/packages.nix - { lib, config, pkgs, minimal, ... }: - { - options.swarselmodules.packages = lib.mkEnableOption "install packages"; - config = lib.mkIf config.swarselmodules.packages { + { lib, config, pkgs, minimal, ... }: + { + options.swarselmodules.packages = lib.mkEnableOption "install packages"; + config = lib.mkIf config.swarselmodules.packages { - environment.systemPackages = with pkgs; lib.optionals (!minimal) [ - # yubikey packages - gnupg - yubikey-personalization - yubico-pam - yubioath-flutter - yubikey-manager - yubikey-touch-detector - yubico-piv-tool - cfssl - pcsctools - pcscliteWithPolkit.out + environment.systemPackages = with pkgs; lib.optionals (!minimal) [ + # yubikey packages + gnupg + yubikey-personalization + yubico-pam + yubioath-flutter + yubikey-manager + yubikey-touch-detector + yubico-piv-tool + cfssl + pcsctools + pcscliteWithPolkit.out - # ledger packages - ledger-live-desktop + # ledger packages + ledger-live-desktop - # pinentry - dbus - # swaylock-effects - syncthingtray-minimal - swayosd + # pinentry + dbus + # swaylock-effects + syncthingtray-minimal + swayosd - # secure boot - sbctl + # secure boot + sbctl - libsForQt5.qt5.qtwayland + libsForQt5.qt5.qtwayland - # nix package database - nix-index - nixos-generators + # nix package database + nix-index + nixos-generators - # commit hooks - pre-commit + # commit hooks + pre-commit - # proc info - acpi + # proc info + acpi - # pci info - pciutils - usbutils + # pci info + pciutils + usbutils - # better make for general tasks - just + # better make for general tasks + just - # keyboards - qmk - vial - via + # keyboards + qmk + vial + via - # theme related - adwaita-icon-theme + # theme related + adwaita-icon-theme - # kde-connect - xdg-desktop-portal - xdg-desktop-portal-gtk - xdg-desktop-portal-wlr + # kde-connect + xdg-desktop-portal + xdg-desktop-portal-gtk + xdg-desktop-portal-wlr - # bluetooth - bluez - ghostscript_headless - wireguard-tools - nixd - zig - zls + # bluetooth + bluez + ghostscript_headless + wireguard-tools + nixd + zig + zls - elk-to-svg + elk-to-svg - ] ++ lib.optionals minimal [ - networkmanager - curl - git - gnupg - rsync - ssh-to-age - sops - vim - just - sbctl - ]; + ] ++ lib.optionals minimal [ + networkmanager + curl + git + gnupg + rsync + ssh-to-age + sops + vim + just + sbctl + ]; - nixpkgs.config.permittedInsecurePackages = lib.mkIf (!minimal) [ - "jitsi-meet-1.0.8043" - "electron-29.4.6" - "SDL_ttf-2.0.11" - # audacity? - "mbedtls-2.28.10" - # "qtwebengine-5.15.19" - ]; - }; - } + nixpkgs.config.permittedInsecurePackages = lib.mkIf (!minimal) [ + "jitsi-meet-1.0.8043" + "electron-29.4.6" + "SDL_ttf-2.0.11" + ]; + }; + } #+end_src **** Environment setup @@ -10524,36 +10518,29 @@ This holds configuration that is specific to framework laptops. #+begin_src nix-ts :tangle modules/nixos/optional/hibernation.nix { lib, config, ... }: - { - options.swarselmodules.optional.hibernation = lib.mkEnableOption "optional amd gpu settings"; - options.swarselsystems = { - hibernation = { - offset = lib.mkOption { - type = lib.types.int; - default = 0; - }; - resumeDevice = lib.mkOption { - type = lib.types.str; - default = "/dev/disk/by-label/nixos"; - }; + { + options.swarselmodules.optional.hibernation = lib.mkEnableOption "optional amd gpu settings"; + options.swarselsystems = { + hibernation = { + offset = lib.mkOption { + type = lib.types.int; + default = 0; + }; + resumeDevice = lib.mkOption { + type = lib.types.str; + default = "/dev/disk/by-label/nixos"; }; }; - config = lib.mkIf config.swarselmodules.optional.hibernation { - boot = { - kernelParams = [ - "resume_offset=${builtins.toString config.swarselsystems.hibernation.offset}" - # "mem_sleep_default=deep" - ]; - inherit (config.swarselsystems.hibernation) resumeDevice; - }; - systemd.services."systemd-suspend-then-hibernate".aliases = [ "systemd-suspend.service" ]; - powerManagement.enable = true; - systemd.sleep.extraConfig = '' - HibernateDelaySec=120m - SuspendState=freeze - ''; + }; + config = lib.mkIf config.swarselmodules.optional.hibernation { + boot = { + kernelParams = [ + "resume_offset=${builtins.toString config.swarselsystems.hibernation.offset}" + ]; + inherit (config.swarselsystems.hibernation) resumeDevice; }; - } + }; + } #+end_src **** BTRFS @@ -10677,13 +10664,11 @@ Options that I need specifically at work. There are more options at [[#h:f0b2ea9 id = "VBC"; type = "wifi"; autoconnect-priority = "500"; - uuid = "3988f10e-6451-381f-9330-a12e66f45051"; secondaries = "48d09de4-0521-47d7-9bd5-43f97e23ff82"; # vpn uuid }; ipv4 = { method = "auto"; }; ipv6 = { - # addr-gen-mode = "default"; - addr-gen-mode = "stable-privacy"; + addr-gen-mode = "default"; method = "auto"; }; proxy = { }; @@ -10696,7 +10681,7 @@ Options that I need specifically at work. There are more options at [[#h:f0b2ea9 ssid = "VBC"; }; wifi-security = { - # auth-alg = "open"; + auth-alg = "open"; key-mgmt = "wpa-eap"; }; }; @@ -10726,22 +10711,20 @@ Options that I need specifically at work. There are more options at [[#h:f0b2ea9 runAsRoot = true; swtpm.enable = true; vhostUserPackages = with pkgs; [ virtiofsd ]; - # ovmf = { - # enable = true; - # packages = [ - # (pkgs.OVMFFull.override { - # secureBoot = true; - # tpmSupport = true; - # }).fd - # ]; - # }; + ovmf = { + enable = true; + packages = [ + (pkgs.OVMFFull.override { + secureBoot = true; + tpmSupport = true; + }).fd + ]; + }; }; }; }; environment.systemPackages = with pkgs; [ - remmina - # gp-onsaml-gui stable24_11.python39 qemu packer @@ -10795,7 +10778,6 @@ Options that I need specifically at work. There are more options at [[#h:f0b2ea9 }; }; - # ACTION=="remove", ENV{PRODUCT}=="3/1050/407/110", RUN+="${pkgs.kanshi}/bin/kanshictl switch laptoponly" udev.extraRules = '' # lock screen when yubikey removed ACTION=="remove", ENV{PRODUCT}=="3/1050/407/110", RUN+="${pkgs.systemd}/bin/systemctl suspend" @@ -11346,7 +11328,6 @@ This is just a separate container for derivations defined in [[#h:64a5cc16-6b16- swarselzellij sshrm endme - git-replace rustdesk-vbc ]; @@ -11578,51 +11559,48 @@ TODO: Non-NixOS machines (=sp3) should not use these by default, but instead the }; - xdg = { - configFile."mimeapps.list".force = true; - mimeApps = { - enable = true; - defaultApplications = { + xdg.mimeApps = { + enable = true; + defaultApplications = { + "application/epub+zip" = [ "calibre-ebook-viewer.desktop" ]; + "application/metalink+xml" = [ "emacsclient.desktop" ]; + "application/msword" = [ "writer.desktop" ]; + "application/pdf" = [ "org.gnome.Evince.desktop" ]; + "application/sql" = [ "emacsclient.desktop" ]; + "application/vnd.ms-excel" = [ "calc.desktop" ]; + "application/vnd.ms-powerpoint" = [ "impress.desktop" ]; + "application/x-extension-htm" = [ "firefox.desktop" ]; + "application/x-extension-html" = [ "firefox.desktop" ]; + "application/x-extension-shtml" = [ "firefox.desktop" ]; + "application/x-extension-xht" = [ "firefox.desktop" ]; + "application/x-extension-xhtml" = [ "firefox.desktop" ]; + "application/xhtml+xml" = [ "firefox.desktop" ]; + "audio/flac" = [ "mpv.desktop" ]; + "audio/mp3" = [ "mpv.desktop" ]; + "audio/ogg" = [ "mpv.desktop" ]; + "audio/wav" = [ "mpv.desktop" ]; + "image/gif" = [ "imv.desktop" ]; + "image/jpeg" = [ "imv.desktop" ]; + "image/png" = [ "imv.desktop" ]; + "image/svg" = [ "imv.desktop" ]; + "image/vnd.adobe.photoshop" = [ "gimp.desktop" ]; + "image/vnd.dxf" = [ "org.inkscape.Inkscape.desktop" ]; + "image/webp" = [ "firefox.desktop" ]; + "text/csv" = [ "emacsclient.desktop" ]; + "text/html" = [ "firefox.desktop" ]; + "text/plain" = [ "emacsclient.desktop" ]; + "video/3gp" = [ "umpv.desktop" ]; + "video/flv" = [ "umpv.desktop" ]; + "video/mkv" = [ "umpv.desktop" ]; + "video/mp4" = [ "umpv.desktop" ]; + "x-scheme-handler/chrome" = [ "firefox.desktop" ]; + "x-scheme-handler/http" = [ "firefox.desktop" ]; + "x-scheme-handler/https" = [ "firefox.desktop" ]; + }; + associations = { + added = { + "application/x-zerosize" = [ "emacsclient.desktop" ]; "application/epub+zip" = [ "calibre-ebook-viewer.desktop" ]; - "application/metalink+xml" = [ "emacsclient.desktop" ]; - "application/msword" = [ "writer.desktop" ]; - "application/pdf" = [ "org.gnome.Evince.desktop" ]; - "application/sql" = [ "emacsclient.desktop" ]; - "application/vnd.ms-excel" = [ "calc.desktop" ]; - "application/vnd.ms-powerpoint" = [ "impress.desktop" ]; - "application/x-extension-htm" = [ "firefox.desktop" ]; - "application/x-extension-html" = [ "firefox.desktop" ]; - "application/x-extension-shtml" = [ "firefox.desktop" ]; - "application/x-extension-xht" = [ "firefox.desktop" ]; - "application/x-extension-xhtml" = [ "firefox.desktop" ]; - "application/xhtml+xml" = [ "firefox.desktop" ]; - "audio/flac" = [ "mpv.desktop" ]; - "audio/mp3" = [ "mpv.desktop" ]; - "audio/ogg" = [ "mpv.desktop" ]; - "audio/wav" = [ "mpv.desktop" ]; - "image/gif" = [ "imv.desktop" ]; - "image/jpeg" = [ "imv.desktop" ]; - "image/png" = [ "imv.desktop" ]; - "image/svg" = [ "imv.desktop" ]; - "image/vnd.adobe.photoshop" = [ "gimp.desktop" ]; - "image/vnd.dxf" = [ "org.inkscape.Inkscape.desktop" ]; - "image/webp" = [ "firefox.desktop" ]; - "text/csv" = [ "emacsclient.desktop" ]; - "text/html" = [ "firefox.desktop" ]; - "text/plain" = [ "emacsclient.desktop" ]; - "video/3gp" = [ "umpv.desktop" ]; - "video/flv" = [ "umpv.desktop" ]; - "video/mkv" = [ "umpv.desktop" ]; - "video/mp4" = [ "umpv.desktop" ]; - "x-scheme-handler/chrome" = [ "firefox.desktop" ]; - "x-scheme-handler/http" = [ "firefox.desktop" ]; - "x-scheme-handler/https" = [ "firefox.desktop" ]; - }; - associations = { - added = { - "application/x-zerosize" = [ "emacsclient.desktop" ]; - "application/epub+zip" = [ "calibre-ebook-viewer.desktop" ]; - }; }; }; }; @@ -11732,90 +11710,44 @@ This section is for programs that require no further configuration. zsh Integrat #+begin_src nix-ts :tangle modules/home/common/programs.nix { lib, config, pkgs, ... }: - { - options.swarselmodules.programs = lib.mkEnableOption "programs settings"; - config = lib.mkIf config.swarselmodules.programs { - programs = { - bat = { - enable = true; - extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ]; - }; - bottom.enable = true; - carapace.enable = true; - fzf = { - enable = true; - enableBashIntegration = false; - enableZshIntegration = false; - }; - imv.enable = true; - jq.enable = true; - less.enable = true; - lesspipe.enable = true; - mpv.enable = true; - pandoc.enable = true; - rclone.enable = true; - ripgrep.enable = true; - sioyek.enable = true; - swayr.enable = true; - timidity.enable = true; - wlogout ={ - enable = true; - layout = [ - { - label = "lock"; - action = "loginctl lock-session"; - text = "Lock"; - keybind = "l"; - circular = true; - } - { - label = "hibernate"; - action = "systemctl hibernate"; - text = "Hibernate"; - keybind = "h"; - circular = true; - } - { - label = "logout"; - action = "loginctl terminate-user $USER"; - text = "Logout"; - keybind = "u"; - circular = true; - } - { - label = "shutdown"; - action = "systemctl poweroff"; - text = "Shutdown"; - keybind = "p"; - circular = true; - } - { - label = "suspend"; - action = "systemctl suspend"; - text = "Suspend"; - keybind = "s"; - circular = true; - } - { - label = "reboot"; - action = "systemctl reboot"; - text = "Reboot"; - keybind = "r"; - circular = true; - } - ]; - }; - yt-dlp.enable = true; - zoxide = { - enable = true; - enableZshIntegration = true; - options = [ - "--cmd cd" - ]; - }; - }; + { + options.swarselmodules.programs = lib.mkEnableOption "programs settings"; + config = lib.mkIf config.swarselmodules.programs { + programs = { + bat = { + enable = true; + extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ]; }; - } + bottom.enable = true; + carapace.enable = true; + fzf = { + enable = true; + enableBashIntegration = false; + enableZshIntegration = false; + }; + imv.enable = true; + jq.enable = true; + less.enable = true; + lesspipe.enable = true; + mpv.enable = true; + pandoc.enable = true; + rclone.enable = true; + ripgrep.enable = true; + sioyek.enable = true; + swayr.enable = true; + timidity.enable = true; + wlogout.enable = true; + yt-dlp.enable = true; + zoxide = { + enable = true; + enableZshIntegration = true; + options = [ + "--cmd cd" + ]; + }; + }; + }; + } #+end_src **** nix-index @@ -14366,10 +14298,7 @@ Currently, I am too lazy to explain every option here, but most of it is very se in { name = "lidopen"; - exec = [ - "${pkgs.swaybg}/bin/swaybg --output '${config.swarselsystems.sharescreen}' --image ${config.swarselsystems.wallpaper} --mode ${config.stylix.imageScalingMode}" - "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/standwp.png --mode ${config.stylix.imageScalingMode}" - ]; + exec = [ "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/standwp.png --mode ${config.stylix.imageScalingMode}" ]; outputs = [ { criteria = config.swarselsystems.sharescreen; @@ -14512,7 +14441,7 @@ This service changes the screen hue at night. I am not sure if that really does programs.spicetify = { enable = true; # spotifyPackage = pkgs.stable24_11.spotify; - spotifyPackage = pkgs.stable.spotify; + spotifyPackage = pkgs.spotify; enabledExtensions = with spicePkgs.extensions; [ fullAppDisplay shuffle @@ -14533,19 +14462,14 @@ This service changes the screen hue at night. I am not sure if that really does let moduleName = "obsidian"; inherit (nixosConfig.repo.secrets.common.obsidian) userIgnoreFilters; - name = "Main"; in { options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} with settings"; config = lib.mkIf config.swarselmodules.${moduleName} { - - home.file = { - "${config.programs.obsidian.vaults.${name}.target}/.obsidian/app.json".force = true; - "${config.programs.obsidian.vaults.${name}.target}/.obsidian/appearance.json".force = true; - "${config.programs.obsidian.vaults.${name}.target}/.obsidian/core-plugins.json".force = true; - }; - programs.obsidian = + let + name = "Main"; + in { enable = true; package = pkgs.obsidian; @@ -14690,7 +14614,7 @@ This service changes the screen hue at night. I am not sure if that really does programs.anki = { enable = true; - # # package = pkgs.anki; + package = pkgs.anki; hideBottomBar = true; hideBottomBarMode = "always"; hideTopBar = true; @@ -14701,7 +14625,6 @@ This service changes the screen hue at night. I am not sure if that really does sync = { autoSync = false; # sync on profile close will delay system shutdown syncMedia = true; - autoSyncMediaMinutes = 5; url = "https://${globals.services.ankisync.domain}"; usernameFile = nixosConfig.sops.secrets.anki-user.path; # this is not the password but the syncKey @@ -14925,27 +14848,15 @@ This service changes the screen hue at night. I am not sure if that really does let moduleName = "batsignal"; in - { - options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings"; - config = lib.mkIf config.swarselmodules.${moduleName} { - services.${moduleName} = { - enable = true; - extraArgs = [ - "-W" - " Consider charging the battery" - "-C" - " Battery is low; plug in charger now" - "-D" - " Device will lose power in a few seconds" - "-c" - "10" - "-d" - "5" - ]; - }; + { + options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings"; + config = lib.mkIf config.swarselmodules.${moduleName} { + services.${moduleName} = { + enable = true; }; + }; - } + } #+end_src **** autotiling @@ -14981,7 +14892,7 @@ This service changes the screen hue at night. I am not sure if that really does let brightnessctl = "${lib.getExe pkgs.brightnessctl}"; swaylock = "${lib.getExe pkgs.swaylock-effects}"; - suspend = "${pkgs.systemd}/bin/systemctl suspend"; + suspend = "${pkgs.systemd}/bin/systemctl"; in { enable = true; @@ -14996,7 +14907,6 @@ This service changes the screen hue at night. I am not sure if that really does ]; events = [ # { event = "before-sleep"; command = "${lib.getExe pkgs.swaylock-effects} -f --screenshots --clock --effect-blur 7x5 --effect-vignette 0.5:0.5 --fade-in 0.2"; } - # { event = "after-resume"; command = "${swaylock} -f "; } { event = "before-sleep"; command = "${swaylock} -f "; } { event = "lock"; command = "${swaylock} -f "; } ]; @@ -15332,16 +15242,16 @@ The rest of the settings is at [[#h:bbf2ecb6-c8ff-4462-b5d5-d45b28604ddf][work]] awscli = { enable = true; package = pkgs.stable24_05.awscli2; - # settings = { - # "default" = { }; - # "profile s3-imagebuilder-prod" = { }; - # }; - # credentials = { - # "s3-imagebuilder-prod" = { - # aws_access_key_id = "5OYXY4879EJG9I91K1B6"; - # credential_process = "${pkgs.pass}/bin/pass show work/awscli/s3-imagebuilder-prod/secret-key"; - # }; - # }; + settings = { + "default" = { }; + "profile s3-imagebuilder-prod" = { }; + }; + credentials = { + "s3-imagebuilder-prod" = { + aws_access_key_id = "5OYXY4879EJG9I91K1B6"; + credential_process = "${pkgs.pass}/bin/pass show work/awscli/s3-imagebuilder-prod/secret-key"; + }; + }; }; git.userEmail = lib.mkForce gitMail; @@ -15505,7 +15415,6 @@ The rest of the settings is at [[#h:bbf2ecb6-c8ff-4462-b5d5-d45b28604ddf][work]] profile = { name = "lidopen"; exec = [ - "${pkgs.swaybg}/bin/swaybg --output '${config.swarselsystems.sharescreen}' --image ${config.swarselsystems.wallpaper} --mode ${config.stylix.imageScalingMode}" "${pkgs.swaybg}/bin/swaybg --output 'HP Inc. HP 732pk CNC4080YL5' --image ${self}/files/wallpaper/botanicswp.png --mode ${config.stylix.imageScalingMode}" "${pkgs.swaybg}/bin/swaybg --output 'Hewlett Packard HP Z24i CN44250RDT' --image ${self}/files/wallpaper/op6wp.png --mode ${config.stylix.imageScalingMode}" ]; @@ -15540,7 +15449,6 @@ The rest of the settings is at [[#h:bbf2ecb6-c8ff-4462-b5d5-d45b28604ddf][work]] { name = "lidopen"; exec = [ - "${pkgs.swaybg}/bin/swaybg --output '${config.swarselsystems.sharescreen}' --image ${config.swarselsystems.wallpaper} --mode ${config.stylix.imageScalingMode}" "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/navidrome.png --mode ${config.stylix.imageScalingMode}" "${pkgs.kanshare}/bin/kanshare ${config.swarselsystems.sharescreen} '${monitor}'" ]; @@ -18139,25 +18047,6 @@ Sometimes my DE crashes after putting it to suspend - to be precise, it happens #+end_src -*** git-replace - -This script allows for quick git replace of a string. - - -#+begin_src nix-ts :tangle pkgs/git-replace/default.nix - { name, writeShellApplication, git, gnugrep, findutils, ... }: - - writeShellApplication { - inherit name; - runtimeInputs = [ git gnugrep findutils ]; - text = '' - git grep -l "$1" | xargs sed -i "s/$1/$2/g" - ''; - } - - -#+end_src - ** Profiles :PROPERTIES: :CUSTOM_ID: h:f0f1c961-3e7a-47b8-99ab-1654bb45dffc @@ -22204,13 +22093,10 @@ bind gd tabdetach bind gD composite tabduplicate; tabdetach bind d composite tabprev; tabclose # bind D tabclose -bind c hint -J +bind c hint bindurl ^http(s)?://www\.google\.com c hint -Jc [class="LC20lb MBeuO DKV0Md"],[class="YmvwI"],[class="YyVfkd"],[class="fl"] bindurl ^http(s)?://news\.ycombinator\.com c hint -Jc [class="titleline"],[class="age"] bindurl ^http(s)?://lobste\.rs c hint -Jc [class="u-url"],[class="comments_label"] -bindurl ^http(s)?://reddit\.com c hint -Jc [class="title may-blank loggedin"],[class="bylink comments may-blank"] -bindurl ^http(s)?://github\.com c hint -Jc [class="Link--primary"],[class="AppHeader-button Button--secondary Button--medium Button p-0 color-fg-muted"],[class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item"],[class="prc-ActionList-ItemLabel-TmBhn"],[class="PRIVATE_TreeView-item-content-text prc-TreeView-TreeViewItemContentText-smZM-"] -bindurl ^http(s)?://vbc\.atlassian\.net\/wiki c hint -Jc [class="_1reo15vq _18m915vq _1bto1l2s _kqswh2mm _o5721q9c _syaz1fxt"],[class="_11c81ixg _1reo15vq _18m915vq _18s81b66 _kqswh2mm _k48p1wq8 _o5721q9c _1bto1l2s _u5f31b66"],[class="_1r04ze3t _kqswstnw"],[class="css-a61etj"],[class="jira-macro-table-underline-pdfexport"] bindurl ^http(s)?://www\.google\.com gi composite focusinput -l ; text.end_of_line " Work diff --git a/files/firefox/tridactyl/tridactylrc b/files/firefox/tridactyl/tridactylrc index b3ef65a..f87a332 100644 --- a/files/firefox/tridactyl/tridactylrc +++ b/files/firefox/tridactyl/tridactylrc @@ -25,13 +25,10 @@ bind gd tabdetach bind gD composite tabduplicate; tabdetach bind d composite tabprev; tabclose # bind D tabclose -bind c hint -J +bind c hint bindurl ^http(s)?://www\.google\.com c hint -Jc [class="LC20lb MBeuO DKV0Md"],[class="YmvwI"],[class="YyVfkd"],[class="fl"] bindurl ^http(s)?://news\.ycombinator\.com c hint -Jc [class="titleline"],[class="age"] bindurl ^http(s)?://lobste\.rs c hint -Jc [class="u-url"],[class="comments_label"] -bindurl ^http(s)?://reddit\.com c hint -Jc [class="title may-blank loggedin"],[class="bylink comments may-blank"] -bindurl ^http(s)?://github\.com c hint -Jc [class="Link--primary"],[class="AppHeader-button Button--secondary Button--medium Button p-0 color-fg-muted"],[class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item"],[class="prc-ActionList-ItemLabel-TmBhn"],[class="PRIVATE_TreeView-item-content-text prc-TreeView-TreeViewItemContentText-smZM-"] -bindurl ^http(s)?://vbc\.atlassian\.net\/wiki c hint -Jc [class="_1reo15vq _18m915vq _1bto1l2s _kqswh2mm _o5721q9c _syaz1fxt"],[class="_11c81ixg _1reo15vq _18m915vq _18s81b66 _kqswh2mm _k48p1wq8 _o5721q9c _1bto1l2s _u5f31b66"],[class="_1r04ze3t _kqswstnw"],[class="css-a61etj"],[class="jira-macro-table-underline-pdfexport"] bindurl ^http(s)?://www\.google\.com gi composite focusinput -l ; text.end_of_line " Work diff --git a/flake.lock b/flake.lock index be5eb6b..ae80937 100644 --- a/flake.lock +++ b/flake.lock @@ -21,17 +21,16 @@ "base16-fish": { "flake": false, "locked": { - "lastModified": 1754405784, - "narHash": "sha256-l9xHIy+85FN+bEo6yquq2IjD1rSg9fjfjpyGP1W8YXo=", + "lastModified": 1622559957, + "narHash": "sha256-PebymhVYbL8trDVVXxCvZgc0S5VxI7I1Hv4RMSquTpA=", "owner": "tomyun", "repo": "base16-fish", - "rev": "23ae20a0093dca0d7b39d76ba2401af0ccf9c561", + "rev": "2f6dd973a9075dabccd26f1cded09508180bf5fe", "type": "github" }, "original": { "owner": "tomyun", "repo": "base16-fish", - "rev": "23ae20a0093dca0d7b39d76ba2401af0ccf9c561", "type": "github" } }, @@ -115,22 +114,6 @@ "type": "github" } }, - "base16-fish_7": { - "flake": false, - "locked": { - "lastModified": 1622559957, - "narHash": "sha256-PebymhVYbL8trDVVXxCvZgc0S5VxI7I1Hv4RMSquTpA=", - "owner": "tomyun", - "repo": "base16-fish", - "rev": "2f6dd973a9075dabccd26f1cded09508180bf5fe", - "type": "github" - }, - "original": { - "owner": "tomyun", - "repo": "base16-fish", - "type": "github" - } - }, "base16-helix": { "flake": false, "locked": { @@ -196,22 +179,6 @@ } }, "base16-helix_5": { - "flake": false, - "locked": { - "lastModified": 1752979451, - "narHash": "sha256-0CQM+FkYy0fOO/sMGhOoNL80ftsAzYCg9VhIrodqusM=", - "owner": "tinted-theming", - "repo": "base16-helix", - "rev": "27cf1e66e50abc622fb76a3019012dc07c678fac", - "type": "github" - }, - "original": { - "owner": "tinted-theming", - "repo": "base16-helix", - "type": "github" - } - }, - "base16-helix_6": { "flake": false, "locked": { "lastModified": 1748408240, @@ -227,7 +194,7 @@ "type": "github" } }, - "base16-helix_7": { + "base16-helix_6": { "flake": false, "locked": { "lastModified": 1748408240, @@ -345,23 +312,6 @@ "type": "github" } }, - "base16-vim_7": { - "flake": false, - "locked": { - "lastModified": 1732806396, - "narHash": "sha256-e0bpPySdJf0F68Ndanwm+KWHgQiZ0s7liLhvJSWDNsA=", - "owner": "tinted-theming", - "repo": "base16-vim", - "rev": "577fe8125d74ff456cf942c733a85d769afe58b7", - "type": "github" - }, - "original": { - "owner": "tinted-theming", - "repo": "base16-vim", - "rev": "577fe8125d74ff456cf942c733a85d769afe58b7", - "type": "github" - } - }, "base16_2": { "inputs": { "fromYaml": "fromYaml_2" @@ -403,11 +353,11 @@ "fromYaml": "fromYaml_4" }, "locked": { - "lastModified": 1755819240, - "narHash": "sha256-qcMhnL7aGAuFuutH4rq9fvAhCpJWVHLcHVZLtPctPlo=", + "lastModified": 1746562888, + "narHash": "sha256-YgNJQyB5dQiwavdDFBMNKk1wyS77AtdgDk/VtU6wEaI=", "owner": "SenchoPens", "repo": "base16.nix", - "rev": "75ed5e5e3fce37df22e49125181fa37899c3ccd6", + "rev": "806a1777a5db2a1ef9d5d6f493ef2381047f2b89", "type": "github" }, "original": { @@ -452,24 +402,6 @@ "type": "github" } }, - "base16_7": { - "inputs": { - "fromYaml": "fromYaml_7" - }, - "locked": { - "lastModified": 1746562888, - "narHash": "sha256-YgNJQyB5dQiwavdDFBMNKk1wyS77AtdgDk/VtU6wEaI=", - "owner": "SenchoPens", - "repo": "base16.nix", - "rev": "806a1777a5db2a1ef9d5d6f493ef2381047f2b89", - "type": "github" - }, - "original": { - "owner": "SenchoPens", - "repo": "base16.nix", - "type": "github" - } - }, "crane": { "locked": { "lastModified": 1754269165, @@ -487,11 +419,11 @@ }, "crane_10": { "locked": { - "lastModified": 1750266157, - "narHash": "sha256-tL42YoNg9y30u7zAqtoGDNdTyXTi8EALDeCB13FtbQA=", + "lastModified": 1754269165, + "narHash": "sha256-0tcS8FHd4QjbCVoxN9jI+PjHgA4vc/IjkUSp+N3zy0U=", "owner": "ipetkov", "repo": "crane", - "rev": "e37c943371b73ed87faf33f7583860f81f1d5a48", + "rev": "444e81206df3f7d92780680e45858e31d2f07a08", "type": "github" }, "original": { @@ -530,36 +462,6 @@ "type": "github" } }, - "crane_13": { - "locked": { - "lastModified": 1754269165, - "narHash": "sha256-0tcS8FHd4QjbCVoxN9jI+PjHgA4vc/IjkUSp+N3zy0U=", - "owner": "ipetkov", - "repo": "crane", - "rev": "444e81206df3f7d92780680e45858e31d2f07a08", - "type": "github" - }, - "original": { - "owner": "ipetkov", - "repo": "crane", - "type": "github" - } - }, - "crane_14": { - "locked": { - "lastModified": 1754269165, - "narHash": "sha256-0tcS8FHd4QjbCVoxN9jI+PjHgA4vc/IjkUSp+N3zy0U=", - "owner": "ipetkov", - "repo": "crane", - "rev": "444e81206df3f7d92780680e45858e31d2f07a08", - "type": "github" - }, - "original": { - "owner": "ipetkov", - "repo": "crane", - "type": "github" - } - }, "crane_2": { "locked": { "lastModified": 1754269165, @@ -607,11 +509,11 @@ }, "crane_5": { "locked": { - "lastModified": 1754269165, - "narHash": "sha256-0tcS8FHd4QjbCVoxN9jI+PjHgA4vc/IjkUSp+N3zy0U=", + "lastModified": 1750266157, + "narHash": "sha256-tL42YoNg9y30u7zAqtoGDNdTyXTi8EALDeCB13FtbQA=", "owner": "ipetkov", "repo": "crane", - "rev": "444e81206df3f7d92780680e45858e31d2f07a08", + "rev": "e37c943371b73ed87faf33f7583860f81f1d5a48", "type": "github" }, "original": { @@ -776,59 +678,6 @@ "type": "github" } }, - "devshell_13": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1741473158, - "narHash": "sha256-kWNaq6wQUbUMlPgw8Y+9/9wP0F8SHkjy24/mN3UAppg=", - "owner": "numtide", - "repo": "devshell", - "rev": "7c9e793ebe66bcba8292989a68c0419b737a22a0", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "devshell", - "type": "github" - } - }, - "devshell_14": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nix-topology", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1728330715, - "narHash": "sha256-xRJ2nPOXb//u1jaBnDP56M7v5ldavjbtR6lfGqSvcKg=", - "owner": "numtide", - "repo": "devshell", - "rev": "dd6b80932022cea34a019e2bb32f6fa9e494dfef", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "devshell", - "type": "github" - } - }, "devshell_2": { "inputs": { "nixpkgs": [ @@ -1059,11 +908,11 @@ ] }, "locked": { - "lastModified": 1758287904, - "narHash": "sha256-IGmaEf3Do8o5Cwp1kXBN1wQmZwQN3NLfq5t4nHtVtcU=", + "lastModified": 1757508292, + "narHash": "sha256-7lVWL5bC6xBIMWWDal41LlGAG+9u2zUorqo3QCUL4p4=", "owner": "nix-community", "repo": "disko", - "rev": "67ff9807dd148e704baadbd4fd783b54282ca627", + "rev": "146f45bee02b8bd88812cfce6ffc0f933788875a", "type": "github" }, "original": { @@ -1082,11 +931,11 @@ ] }, "locked": { - "lastModified": 1757508292, - "narHash": "sha256-7lVWL5bC6xBIMWWDal41LlGAG+9u2zUorqo3QCUL4p4=", + "lastModified": 1753140376, + "narHash": "sha256-7lrVrE0jSvZHrxEzvnfHFE/Wkk9DDqb+mYCodI5uuB8=", "owner": "nix-community", "repo": "disko", - "rev": "146f45bee02b8bd88812cfce6ffc0f933788875a", + "rev": "545aba02960caa78a31bd9a8709a0ad4b6320a5c", "type": "github" }, "original": { @@ -1106,11 +955,11 @@ ] }, "locked": { - "lastModified": 1753140376, - "narHash": "sha256-7lrVrE0jSvZHrxEzvnfHFE/Wkk9DDqb+mYCodI5uuB8=", + "lastModified": 1751854533, + "narHash": "sha256-U/OQFplExOR1jazZY4KkaQkJqOl59xlh21HP9mI79Vc=", "owner": "nix-community", "repo": "disko", - "rev": "545aba02960caa78a31bd9a8709a0ad4b6320a5c", + "rev": "16b74a1e304197248a1bc663280f2548dbfcae3c", "type": "github" }, "original": { @@ -1144,32 +993,6 @@ "type": "github" } }, - "disko_7": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1751854533, - "narHash": "sha256-U/OQFplExOR1jazZY4KkaQkJqOl59xlh21HP9mI79Vc=", - "owner": "nix-community", - "repo": "disko", - "rev": "16b74a1e304197248a1bc663280f2548dbfcae3c", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "disko", - "type": "github" - } - }, "emacs-overlay": { "inputs": { "nixpkgs": [ @@ -1178,11 +1001,11 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1760432944, - "narHash": "sha256-4OXXccXsY1sBXTXjYIthdjXLAotozSh4F8StGRuLyMQ=", + "lastModified": 1759770590, + "narHash": "sha256-ex/JTut0wrrVHFWwNIuBAlnR71R7dletYxcJEH9NYAw=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "aba8daa237dc07a3bb28a61c252a718e8eb38057", + "rev": "4e4ed8f8beda9d47887cf4411720cb8a83a43e90", "type": "github" }, "original": { @@ -1200,11 +1023,11 @@ "nixpkgs-stable": "nixpkgs-stable_4" }, "locked": { - "lastModified": 1759770590, - "narHash": "sha256-ex/JTut0wrrVHFWwNIuBAlnR71R7dletYxcJEH9NYAw=", + "lastModified": 1758705066, + "narHash": "sha256-CFVYMyz/p4c/w0E2BLz/dCmjl4zfJRUS+ERUJmaZj+E=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "4e4ed8f8beda9d47887cf4411720cb8a83a43e90", + "rev": "d8da68a0986380aca8ee9d277dfc4bcb0761a278", "type": "github" }, "original": { @@ -1223,11 +1046,11 @@ "nixpkgs-stable": "nixpkgs-stable_7" }, "locked": { - "lastModified": 1758705066, - "narHash": "sha256-CFVYMyz/p4c/w0E2BLz/dCmjl4zfJRUS+ERUJmaZj+E=", + "lastModified": 1757927471, + "narHash": "sha256-odfHgmioy0yGxiAFTnAq7SMYTLUv1JApKES5i2KfS4c=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "d8da68a0986380aca8ee9d277dfc4bcb0761a278", + "rev": "6302a8a5904203bc18532e71b3d61f4b324d20fb", "type": "github" }, "original": { @@ -1247,11 +1070,11 @@ "nixpkgs-stable": "nixpkgs-stable_10" }, "locked": { - "lastModified": 1757927471, - "narHash": "sha256-odfHgmioy0yGxiAFTnAq7SMYTLUv1JApKES5i2KfS4c=", + "lastModified": 1754705618, + "narHash": "sha256-JYwLLpnzJz0+ihJrwZUTAodx2+iBPWfnmfhJy3lpSw4=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "6302a8a5904203bc18532e71b3d61f4b324d20fb", + "rev": "c5aea4616a2c482eb3f1765f90de9771ba1d134a", "type": "github" }, "original": { @@ -1272,11 +1095,11 @@ "nixpkgs-stable": "nixpkgs-stable_13" }, "locked": { - "lastModified": 1754705618, - "narHash": "sha256-JYwLLpnzJz0+ihJrwZUTAodx2+iBPWfnmfhJy3lpSw4=", + "lastModified": 1751908357, + "narHash": "sha256-7JeYhMYTdfzHsFfGZRUM+t0nx4HdYa3oaMH2B/qz9MA=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "c5aea4616a2c482eb3f1765f90de9771ba1d134a", + "rev": "8e4ecd7c43c5e061dd2fc4d9d1994ec4d67cab2e", "type": "github" }, "original": { @@ -1295,34 +1118,7 @@ "swarsel", "nixpkgs" ], - "nixpkgs-stable": "nixpkgs-stable_16" - }, - "locked": { - "lastModified": 1751908357, - "narHash": "sha256-7JeYhMYTdfzHsFfGZRUM+t0nx4HdYa3oaMH2B/qz9MA=", - "owner": "nix-community", - "repo": "emacs-overlay", - "rev": "8e4ecd7c43c5e061dd2fc4d9d1994ec4d67cab2e", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "emacs-overlay", - "type": "github" - } - }, - "emacs-overlay_7": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ], - "nixpkgs-stable": "nixpkgs-stable_18" + "nixpkgs-stable": "nixpkgs-stable_15" }, "locked": { "lastModified": 1751908357, @@ -1357,11 +1153,11 @@ "firefox-gnome-theme_2": { "flake": false, "locked": { - "lastModified": 1758112371, - "narHash": "sha256-lizRM2pj6PHrR25yimjyFn04OS4wcdbc38DCdBVa2rk=", + "lastModified": 1756083905, + "narHash": "sha256-UqYGTBgI5ypGh0Kf6zZjom/vABg7HQocB4gmxzl12uo=", "owner": "rafaelmardojai", "repo": "firefox-gnome-theme", - "rev": "0909cfe4a2af8d358ad13b20246a350e14c2473d", + "rev": "b655eaf16d4cbec9c3472f62eee285d4b419a808", "type": "github" }, "original": { @@ -1389,11 +1185,11 @@ "firefox-gnome-theme_4": { "flake": false, "locked": { - "lastModified": 1756083905, - "narHash": "sha256-UqYGTBgI5ypGh0Kf6zZjom/vABg7HQocB4gmxzl12uo=", + "lastModified": 1748383148, + "narHash": "sha256-pGvD/RGuuPf/4oogsfeRaeMm6ipUIznI2QSILKjKzeA=", "owner": "rafaelmardojai", "repo": "firefox-gnome-theme", - "rev": "b655eaf16d4cbec9c3472f62eee285d4b419a808", + "rev": "4eb2714fbed2b80e234312611a947d6cb7d70caf", "type": "github" }, "original": { @@ -1434,22 +1230,6 @@ "type": "github" } }, - "firefox-gnome-theme_7": { - "flake": false, - "locked": { - "lastModified": 1748383148, - "narHash": "sha256-pGvD/RGuuPf/4oogsfeRaeMm6ipUIznI2QSILKjKzeA=", - "owner": "rafaelmardojai", - "repo": "firefox-gnome-theme", - "rev": "4eb2714fbed2b80e234312611a947d6cb7d70caf", - "type": "github" - }, - "original": { - "owner": "rafaelmardojai", - "repo": "firefox-gnome-theme", - "type": "github" - } - }, "flake-compat": { "flake": false, "locked": { @@ -1469,11 +1249,11 @@ "flake-compat_10": { "flake": false, "locked": { - "lastModified": 1747046372, - "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", "owner": "edolstra", "repo": "flake-compat", - "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { @@ -1485,11 +1265,11 @@ "flake-compat_11": { "flake": false, "locked": { - "lastModified": 1733328505, - "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", + "lastModified": 1747046372, + "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", "owner": "edolstra", "repo": "flake-compat", - "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", + "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", "type": "github" }, "original": { @@ -1501,11 +1281,11 @@ "flake-compat_12": { "flake": false, "locked": { - "lastModified": 1747046372, - "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", + "lastModified": 1733328505, + "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", "owner": "edolstra", "repo": "flake-compat", - "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", + "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", "type": "github" }, "original": { @@ -1517,11 +1297,11 @@ "flake-compat_13": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "lastModified": 1747046372, + "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", "owner": "edolstra", "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", "type": "github" }, "original": { @@ -1531,6 +1311,22 @@ } }, "flake-compat_14": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_15": { "flake": false, "locked": { "lastModified": 1747046372, @@ -1546,7 +1342,7 @@ "type": "github" } }, - "flake-compat_15": { + "flake-compat_16": { "flake": false, "locked": { "lastModified": 1733328505, @@ -1562,7 +1358,7 @@ "type": "github" } }, - "flake-compat_16": { + "flake-compat_17": { "flake": false, "locked": { "lastModified": 1747046372, @@ -1578,7 +1374,7 @@ "type": "github" } }, - "flake-compat_17": { + "flake-compat_18": { "flake": false, "locked": { "lastModified": 1696426674, @@ -1594,30 +1390,14 @@ "type": "github" } }, - "flake-compat_18": { - "flake": false, - "locked": { - "lastModified": 1747046372, - "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, "flake-compat_19": { "flake": false, "locked": { - "lastModified": 1733328505, - "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", "owner": "edolstra", "repo": "flake-compat", - "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { @@ -1645,11 +1425,11 @@ "flake-compat_20": { "flake": false, "locked": { - "lastModified": 1747046372, - "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", + "lastModified": 1733328505, + "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", "owner": "edolstra", "repo": "flake-compat", - "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", + "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", "type": "github" }, "original": { @@ -1661,11 +1441,11 @@ "flake-compat_21": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "lastModified": 1747046372, + "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", "owner": "edolstra", "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", "type": "github" }, "original": { @@ -1691,54 +1471,6 @@ } }, "flake-compat_23": { - "flake": false, - "locked": { - "lastModified": 1733328505, - "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, - "flake-compat_24": { - "flake": false, - "locked": { - "lastModified": 1747046372, - "narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, - "flake-compat_25": { - "flake": false, - "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, - "flake-compat_26": { "flake": false, "locked": { "lastModified": 1696426674, @@ -1771,6 +1503,22 @@ } }, "flake-compat_4": { + "flake": false, + "locked": { + "lastModified": 1733328505, + "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_5": { "flake": false, "locked": { "lastModified": 1747046372, @@ -1786,7 +1534,7 @@ "type": "github" } }, - "flake-compat_5": { + "flake-compat_6": { "flake": false, "locked": { "lastModified": 1696426674, @@ -1802,7 +1550,7 @@ "type": "github" } }, - "flake-compat_6": { + "flake-compat_7": { "flake": false, "locked": { "lastModified": 1747046372, @@ -1818,7 +1566,7 @@ "type": "github" } }, - "flake-compat_7": { + "flake-compat_8": { "flake": false, "locked": { "lastModified": 1733328505, @@ -1834,7 +1582,7 @@ "type": "github" } }, - "flake-compat_8": { + "flake-compat_9": { "flake": false, "locked": { "lastModified": 1747046372, @@ -1850,22 +1598,6 @@ "type": "github" } }, - "flake-compat_9": { - "flake": false, - "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", - "type": "github" - }, - "original": { - "owner": "edolstra", - "repo": "flake-compat", - "type": "github" - } - }, "flake-parts": { "inputs": { "nixpkgs-lib": "nixpkgs-lib" @@ -2015,11 +1747,11 @@ "nixpkgs-lib": "nixpkgs-lib_7" }, "locked": { - "lastModified": 1756770412, - "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", + "lastModified": 1754487366, + "narHash": "sha256-pHYj8gUBapuUzKV/kN/tR3Zvqc7o6gdFB9XKXIp1SQ8=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "4524271976b625a4a605beefd893f270620fd751", + "rev": "af66ad14b28a127c5c0f3bbb298218fc63528a18", "type": "github" }, "original": { @@ -2125,11 +1857,11 @@ ] }, "locked": { - "lastModified": 1756770412, - "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", + "lastModified": 1751413152, + "narHash": "sha256-Tyw1RjYEsp5scoigs1384gIg6e0GoBVjms4aXFfRssQ=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "4524271976b625a4a605beefd893f270620fd751", + "rev": "77826244401ea9de6e3bac47c2db46005e1f30b5", "type": "github" }, "original": { @@ -2143,11 +1875,11 @@ "nixpkgs-lib": "nixpkgs-lib_9" }, "locked": { - "lastModified": 1754487366, - "narHash": "sha256-pHYj8gUBapuUzKV/kN/tR3Zvqc7o6gdFB9XKXIp1SQ8=", + "lastModified": 1751413152, + "narHash": "sha256-Tyw1RjYEsp5scoigs1384gIg6e0GoBVjms4aXFfRssQ=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "af66ad14b28a127c5c0f3bbb298218fc63528a18", + "rev": "77826244401ea9de6e3bac47c2db46005e1f30b5", "type": "github" }, "original": { @@ -2168,11 +1900,11 @@ ] }, "locked": { - "lastModified": 1754091436, - "narHash": "sha256-XKqDMN1/Qj1DKivQvscI4vmHfDfvYR2pfuFOJiCeewM=", + "lastModified": 1749398372, + "narHash": "sha256-tYBdgS56eXYaWVW3fsnPQ/nFlgWi/Z2Ymhyu21zVM98=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "67df8c627c2c39c41dbec76a1f201929929ab0bd", + "rev": "9305fe4e5c2a6fcf5ba6a3ff155720fbe4076569", "type": "github" }, "original": { @@ -2235,11 +1967,11 @@ ] }, "locked": { - "lastModified": 1751413152, - "narHash": "sha256-Tyw1RjYEsp5scoigs1384gIg6e0GoBVjms4aXFfRssQ=", + "lastModified": 1743550720, + "narHash": "sha256-hIshGgKZCgWh6AYJpJmRgFdR3WUbkY04o82X05xqQiY=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "77826244401ea9de6e3bac47c2db46005e1f30b5", + "rev": "c621e8422220273271f52058f618c94e405bb0f5", "type": "github" }, "original": { @@ -2382,122 +2114,6 @@ "inputs": { "nixpkgs-lib": "nixpkgs-lib_13" }, - "locked": { - "lastModified": 1751413152, - "narHash": "sha256-Tyw1RjYEsp5scoigs1384gIg6e0GoBVjms4aXFfRssQ=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "77826244401ea9de6e3bac47c2db46005e1f30b5", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "flake-parts_32": { - "inputs": { - "nixpkgs-lib": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "lanzaboote", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1749398372, - "narHash": "sha256-tYBdgS56eXYaWVW3fsnPQ/nFlgWi/Z2Ymhyu21zVM98=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "9305fe4e5c2a6fcf5ba6a3ff155720fbe4076569", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "flake-parts_33": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_14" - }, - "locked": { - "lastModified": 1719994518, - "narHash": "sha256-pQMhCCHyQGRzdfAkdJ4cIWiw+JNuWsTX7f0ZYSyz0VY=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "9227223f6d922fee3c7b190b2cc238a99527bbb7", - "type": "github" - }, - "original": { - "id": "flake-parts", - "type": "indirect" - } - }, - "flake-parts_34": { - "inputs": { - "nixpkgs-lib": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nur", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1733312601, - "narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "flake-parts_35": { - "inputs": { - "nixpkgs-lib": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "stylix", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1743550720, - "narHash": "sha256-hIshGgKZCgWh6AYJpJmRgFdR3WUbkY04o82X05xqQiY=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "c621e8422220273271f52058f618c94e405bb0f5", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "flake-parts_36": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_15" - }, "locked": { "lastModified": 1754487366, "narHash": "sha256-pHYj8gUBapuUzKV/kN/tR3Zvqc7o6gdFB9XKXIp1SQ8=", @@ -2512,16 +2128,52 @@ "type": "github" } }, - "flake-parts_37": { + "flake-parts_32": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_14" + }, + "locked": { + "lastModified": 1756770412, + "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "4524271976b625a4a605beefd893f270620fd751", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "flake-parts", + "type": "github" + } + }, + "flake-parts_33": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_15" + }, + "locked": { + "lastModified": 1756770412, + "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "4524271976b625a4a605beefd893f270620fd751", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "flake-parts", + "type": "github" + } + }, + "flake-parts_34": { "inputs": { "nixpkgs-lib": "nixpkgs-lib_16" }, "locked": { - "lastModified": 1756770412, - "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", + "lastModified": 1759362264, + "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "4524271976b625a4a605beefd893f270620fd751", + "rev": "758cf7296bee11f1706a574c77d072b8a7baa881", "type": "github" }, "original": { @@ -2530,28 +2182,10 @@ "type": "github" } }, - "flake-parts_38": { + "flake-parts_35": { "inputs": { "nixpkgs-lib": "nixpkgs-lib_17" }, - "locked": { - "lastModified": 1756770412, - "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "4524271976b625a4a605beefd893f270620fd751", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "flake-parts_39": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_18" - }, "locked": { "lastModified": 1759362264, "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=", @@ -2587,60 +2221,6 @@ "type": "github" } }, - "flake-parts_40": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_19" - }, - "locked": { - "lastModified": 1759362264, - "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "758cf7296bee11f1706a574c77d072b8a7baa881", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "flake-parts_41": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_20" - }, - "locked": { - "lastModified": 1759362264, - "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "758cf7296bee11f1706a574c77d072b8a7baa881", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "flake-parts_42": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_21" - }, - "locked": { - "lastModified": 1759362264, - "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "758cf7296bee11f1706a574c77d072b8a7baa881", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, "flake-parts_5": { "inputs": { "nixpkgs-lib": [ @@ -2667,11 +2247,11 @@ "nixpkgs-lib": "nixpkgs-lib_3" }, "locked": { - "lastModified": 1759362264, - "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=", + "lastModified": 1756770412, + "narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "758cf7296bee11f1706a574c77d072b8a7baa881", + "rev": "4524271976b625a4a605beefd893f270620fd751", "type": "github" }, "original": { @@ -2761,14 +2341,14 @@ }, "flake-utils_10": { "inputs": { - "systems": "systems_16" + "systems": "systems_18" }, "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "lastModified": 1726560853, + "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", "type": "github" }, "original": { @@ -2781,6 +2361,24 @@ "inputs": { "systems": "systems_19" }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_12": { + "inputs": { + "systems": "systems_21" + }, "locked": { "lastModified": 1726560853, "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", @@ -2795,9 +2393,9 @@ "type": "github" } }, - "flake-utils_12": { + "flake-utils_13": { "inputs": { - "systems": "systems_20" + "systems": "systems_22" }, "locked": { "lastModified": 1731533236, @@ -2813,27 +2411,9 @@ "type": "github" } }, - "flake-utils_13": { - "inputs": { - "systems": "systems_23" - }, - "locked": { - "lastModified": 1726560853, - "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "flake-utils_14": { "inputs": { - "systems": "systems_24" + "systems": "systems_26" }, "locked": { "lastModified": 1731533236, @@ -2851,14 +2431,14 @@ }, "flake-utils_15": { "inputs": { - "systems": "systems_26" + "systems": "systems_29" }, "locked": { - "lastModified": 1726560853, - "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", "owner": "numtide", "repo": "flake-utils", - "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", "type": "github" }, "original": { @@ -2869,7 +2449,7 @@ }, "flake-utils_16": { "inputs": { - "systems": "systems_27" + "systems": "systems_33" }, "locked": { "lastModified": 1731533236, @@ -2887,7 +2467,7 @@ }, "flake-utils_17": { "inputs": { - "systems": "systems_31" + "systems": "systems_37" }, "locked": { "lastModified": 1731533236, @@ -2905,7 +2485,7 @@ }, "flake-utils_18": { "inputs": { - "systems": "systems_34" + "systems": "systems_41" }, "locked": { "lastModified": 1731533236, @@ -2923,7 +2503,7 @@ }, "flake-utils_19": { "inputs": { - "systems": "systems_38" + "systems": "systems_46" }, "locked": { "lastModified": 1731533236, @@ -2957,78 +2537,6 @@ "type": "github" } }, - "flake-utils_20": { - "inputs": { - "systems": "systems_42" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "flake-utils_21": { - "inputs": { - "systems": "systems_46" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "flake-utils_22": { - "inputs": { - "systems": "systems_51" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "flake-utils_23": { - "inputs": { - "systems": "systems_56" - }, - "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "flake-utils_3": { "inputs": { "systems": "systems_3" @@ -3052,11 +2560,11 @@ "systems": "systems_6" }, "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "lastModified": 1726560853, + "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", "type": "github" }, "original": { @@ -3070,11 +2578,11 @@ "systems": "systems_7" }, "locked": { - "lastModified": 1726560853, - "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", "owner": "numtide", "repo": "flake-utils", - "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", "type": "github" }, "original": { @@ -3085,14 +2593,14 @@ }, "flake-utils_6": { "inputs": { - "systems": "systems_8" + "systems": "systems_10" }, "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "lastModified": 1726560853, + "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", "type": "github" }, "original": { @@ -3105,24 +2613,6 @@ "inputs": { "systems": "systems_11" }, - "locked": { - "lastModified": 1726560853, - "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "flake-utils_8": { - "inputs": { - "systems": "systems_12" - }, "locked": { "lastModified": 1731533236, "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", @@ -3137,9 +2627,9 @@ "type": "github" } }, - "flake-utils_9": { + "flake-utils_8": { "inputs": { - "systems": "systems_15" + "systems": "systems_14" }, "locked": { "lastModified": 1726560853, @@ -3155,6 +2645,24 @@ "type": "github" } }, + "flake-utils_9": { + "inputs": { + "systems": "systems_15" + }, + "locked": { + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "fromYaml": { "flake": false, "locked": { @@ -3251,27 +2759,10 @@ "type": "github" } }, - "fromYaml_7": { - "flake": false, - "locked": { - "lastModified": 1731966426, - "narHash": "sha256-lq95WydhbUTWig/JpqiB7oViTcHFP8Lv41IGtayokA8=", - "owner": "SenchoPens", - "repo": "fromYaml", - "rev": "106af9e2f715e2d828df706c386a685698f3223b", - "type": "github" - }, - "original": { - "owner": "SenchoPens", - "repo": "fromYaml", - "type": "github" - } - }, "fw-fanctrl": { "inputs": { - "flake-compat": "flake-compat_7", + "flake-compat": "flake-compat_4", "nixpkgs": [ - "swarsel", "swarsel", "nixpkgs" ] @@ -3293,9 +2784,8 @@ }, "fw-fanctrl_2": { "inputs": { - "flake-compat": "flake-compat_11", + "flake-compat": "flake-compat_8", "nixpkgs": [ - "swarsel", "swarsel", "swarsel", "nixpkgs" @@ -3318,12 +2808,11 @@ }, "fw-fanctrl_3": { "inputs": { - "flake-compat": "flake-compat_15", + "flake-compat": "flake-compat_12", "nixpkgs": [ "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ] }, @@ -3344,13 +2833,12 @@ }, "fw-fanctrl_4": { "inputs": { - "flake-compat": "flake-compat_19", + "flake-compat": "flake-compat_16", "nixpkgs": [ "swarsel", "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ] }, @@ -3371,14 +2859,13 @@ }, "fw-fanctrl_5": { "inputs": { - "flake-compat": "flake-compat_23", + "flake-compat": "flake-compat_20", "nixpkgs": [ "swarsel", "swarsel", "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ] }, @@ -3650,34 +3137,6 @@ "type": "github" } }, - "gitignore_19": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "lanzaboote", - "pre-commit-hooks-nix", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1709087332, - "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", - "owner": "hercules-ci", - "repo": "gitignore.nix", - "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "gitignore.nix", - "type": "github" - } - }, "gitignore_2": { "inputs": { "nixpkgs": [ @@ -3700,61 +3159,6 @@ "type": "github" } }, - "gitignore_20": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nix-topology", - "pre-commit-hooks", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1709087332, - "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", - "owner": "hercules-ci", - "repo": "gitignore.nix", - "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "gitignore.nix", - "type": "github" - } - }, - "gitignore_21": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "pre-commit-hooks", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1709087332, - "narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=", - "owner": "hercules-ci", - "repo": "gitignore.nix", - "rev": "637db329424fd7e46cf4185293b9cc8c88c95394", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "gitignore.nix", - "type": "github" - } - }, "gitignore_3": { "inputs": { "nixpkgs": [ @@ -4017,23 +3421,6 @@ "type": "github" } }, - "gnome-shell_7": { - "flake": false, - "locked": { - "lastModified": 1748186689, - "narHash": "sha256-UaD7Y9f8iuLBMGHXeJlRu6U1Ggw5B9JnkFs3enZlap0=", - "owner": "GNOME", - "repo": "gnome-shell", - "rev": "8c88f917db0f1f0d80fa55206c863d3746fa18d0", - "type": "github" - }, - "original": { - "owner": "GNOME", - "ref": "48.2", - "repo": "gnome-shell", - "type": "github" - } - }, "home-manager": { "inputs": { "nixpkgs": [ @@ -4041,16 +3428,15 @@ ] }, "locked": { - "lastModified": 1760571159, - "narHash": "sha256-Y086n2U0kN9HjOo+UScwQDS27gKMiIlT6vDehvlmdAg=", - "owner": "JuneStepp", + "lastModified": 1759761710, + "narHash": "sha256-6ZG7VZZsbg39gtziGSvCJKurhIahIuiCn+W6TGB5kOU=", + "owner": "nix-community", "repo": "home-manager", - "rev": "ce469fb711fe3a3e83d8f350d7ac6353ffcfe8db", + "rev": "929535c3082afdf0b18afec5ea1ef14d7689ff1c", "type": "github" }, "original": { - "owner": "JuneStepp", - "ref": "anki-fix-booleans", + "owner": "nix-community", "repo": "home-manager", "type": "github" } @@ -4131,59 +3517,6 @@ "type": "github" } }, - "home-manager_13": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1751824240, - "narHash": "sha256-aDDC0CHTlL7QDKWWhdbEgVPK6KwWt+ca0QkmHYZxMzI=", - "owner": "nix-community", - "repo": "home-manager", - "rev": "fd9e55f5fac45a26f6169310afca64d56b681935", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "home-manager", - "type": "github" - } - }, - "home-manager_14": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nix-on-droid", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1709445365, - "narHash": "sha256-DVv6nd9FQBbMWbOmhq0KVqmlc3y3FMSYl49UXmMcO+0=", - "owner": "nix-community", - "repo": "home-manager", - "rev": "4de84265d7ec7634a69ba75028696d74de9a44a7", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "home-manager", - "type": "github" - } - }, "home-manager_2": { "inputs": { "nixpkgs": [ @@ -4213,11 +3546,11 @@ ] }, "locked": { - "lastModified": 1759761710, - "narHash": "sha256-6ZG7VZZsbg39gtziGSvCJKurhIahIuiCn+W6TGB5kOU=", + "lastModified": 1758692005, + "narHash": "sha256-bNRMXWSLM4K9cF1YaHYjLol60KIAWW4GzAoJDp5tA0w=", "owner": "nix-community", "repo": "home-manager", - "rev": "929535c3082afdf0b18afec5ea1ef14d7689ff1c", + "rev": "6ce2e18007ff022db41d9cc042f8838e8c51ed66", "type": "github" }, "original": { @@ -4257,11 +3590,11 @@ ] }, "locked": { - "lastModified": 1758692005, - "narHash": "sha256-bNRMXWSLM4K9cF1YaHYjLol60KIAWW4GzAoJDp5tA0w=", + "lastModified": 1757920978, + "narHash": "sha256-Mv16aegXLulgyDunijP6SPFJNm8lSXb2w3Q0X+vZ9TY=", "owner": "nix-community", "repo": "home-manager", - "rev": "6ce2e18007ff022db41d9cc042f8838e8c51ed66", + "rev": "11cc5449c50e0e5b785be3dfcb88245232633eb8", "type": "github" }, "original": { @@ -4303,11 +3636,11 @@ ] }, "locked": { - "lastModified": 1757920978, - "narHash": "sha256-Mv16aegXLulgyDunijP6SPFJNm8lSXb2w3Q0X+vZ9TY=", + "lastModified": 1754756528, + "narHash": "sha256-W1jYKMetZSOHP5m2Z5Wokdj/ct17swPHs+MiY2WT1HQ=", "owner": "nix-community", "repo": "home-manager", - "rev": "11cc5449c50e0e5b785be3dfcb88245232633eb8", + "rev": "3ec1cd9a0703fbd55d865b7fd2b07d08374f0355", "type": "github" }, "original": { @@ -4351,11 +3684,11 @@ ] }, "locked": { - "lastModified": 1754756528, - "narHash": "sha256-W1jYKMetZSOHP5m2Z5Wokdj/ct17swPHs+MiY2WT1HQ=", + "lastModified": 1751824240, + "narHash": "sha256-aDDC0CHTlL7QDKWWhdbEgVPK6KwWt+ca0QkmHYZxMzI=", "owner": "nix-community", "repo": "home-manager", - "rev": "3ec1cd9a0703fbd55d865b7fd2b07d08374f0355", + "rev": "fd9e55f5fac45a26f6169310afca64d56b681935", "type": "github" }, "original": { @@ -4454,21 +3787,6 @@ "type": "github" } }, - "impermanence_7": { - "locked": { - "lastModified": 1737831083, - "narHash": "sha256-LJggUHbpyeDvNagTUrdhe/pRVp4pnS6wVKALS782gRI=", - "owner": "nix-community", - "repo": "impermanence", - "rev": "4b3e914cdf97a5b536a889e939fb2fd2b043a170", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "impermanence", - "type": "github" - } - }, "lanzaboote": { "inputs": { "crane": "crane", @@ -4495,7 +3813,7 @@ "lanzaboote_2": { "inputs": { "crane": "crane_2", - "flake-compat": "flake-compat_4", + "flake-compat": "flake-compat_5", "flake-parts": "flake-parts_7", "nixpkgs": "nixpkgs_9", "pre-commit-hooks-nix": "pre-commit-hooks-nix_2", @@ -4518,7 +3836,7 @@ "lanzaboote_3": { "inputs": { "crane": "crane_3", - "flake-compat": "flake-compat_8", + "flake-compat": "flake-compat_9", "flake-parts": "flake-parts_12", "nixpkgs": "nixpkgs_17", "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", @@ -4541,35 +3859,12 @@ "lanzaboote_4": { "inputs": { "crane": "crane_4", - "flake-compat": "flake-compat_12", + "flake-compat": "flake-compat_13", "flake-parts": "flake-parts_17", "nixpkgs": "nixpkgs_25", "pre-commit-hooks-nix": "pre-commit-hooks-nix_4", "rust-overlay": "rust-overlay_4" }, - "locked": { - "lastModified": 1756744479, - "narHash": "sha256-EyZXusK/wRD3V9vDh00W2Re3Eg8UQ+LjVBQrrH9dq1U=", - "owner": "nix-community", - "repo": "lanzaboote", - "rev": "747b7912f49e2885090c83364d88cf853a020ac1", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "lanzaboote", - "type": "github" - } - }, - "lanzaboote_5": { - "inputs": { - "crane": "crane_5", - "flake-compat": "flake-compat_16", - "flake-parts": "flake-parts_22", - "nixpkgs": "nixpkgs_33", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", - "rust-overlay": "rust-overlay_5" - }, "locked": { "lastModified": 1754297745, "narHash": "sha256-aD6/scLN3L4ZszmNbhhd3JQ9Pzv1ScYFphz14wHinfs=", @@ -4584,14 +3879,14 @@ "type": "github" } }, - "lanzaboote_6": { + "lanzaboote_5": { "inputs": { - "crane": "crane_6", - "flake-compat": "flake-compat_20", - "flake-parts": "flake-parts_27", - "nixpkgs": "nixpkgs_41", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", - "rust-overlay": "rust-overlay_6" + "crane": "crane_5", + "flake-compat": "flake-compat_17", + "flake-parts": "flake-parts_22", + "nixpkgs": "nixpkgs_33", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", + "rust-overlay": "rust-overlay_5" }, "locked": { "lastModified": 1751381593, @@ -4607,14 +3902,14 @@ "type": "github" } }, - "lanzaboote_7": { + "lanzaboote_6": { "inputs": { - "crane": "crane_7", - "flake-compat": "flake-compat_24", - "flake-parts": "flake-parts_32", - "nixpkgs": "nixpkgs_49", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", - "rust-overlay": "rust-overlay_7" + "crane": "crane_6", + "flake-compat": "flake-compat_21", + "flake-parts": "flake-parts_27", + "nixpkgs": "nixpkgs_41", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", + "rust-overlay": "rust-overlay_6" }, "locked": { "lastModified": 1751381593, @@ -4638,29 +3933,6 @@ ], "spectrum": "spectrum" }, - "locked": { - "lastModified": 1760236243, - "narHash": "sha256-u2HvURFrR6UnPbCltTOWQBvX6N8XSpCE5m0p4c8UOKA=", - "owner": "astro", - "repo": "microvm.nix", - "rev": "67c23f6fc72e78cc4b8e46b8b9b1d3982d27bee4", - "type": "github" - }, - "original": { - "owner": "astro", - "repo": "microvm.nix", - "type": "github" - } - }, - "microvm_2": { - "inputs": { - "flake-utils": "flake-utils_4", - "nixpkgs": [ - "swarsel", - "nixpkgs" - ], - "spectrum": "spectrum_2" - }, "locked": { "lastModified": 1759708185, "narHash": "sha256-s8bRMSQVILQlhbBqCKBFtIcsxbcuH2oX35JJ7FHw4BI=", @@ -4687,11 +3959,11 @@ "xwayland-satellite-unstable": "xwayland-satellite-unstable" }, "locked": { - "lastModified": 1760432014, - "narHash": "sha256-shqc+38nKs/XS2scgJV8KP5/D0PWAXYYgf5nT6BfHNE=", + "lastModified": 1759711756, + "narHash": "sha256-gdX1IM8MT3vTqLSXLDc9HNg30EcHkAgUXeNh4UpcyYU=", "owner": "sodiboo", "repo": "niri-flake", - "rev": "f2aa74f5d28fed7fca48cd4bea4c0803699c0f6c", + "rev": "372ecde34b3af73ae523d4b055f5bcdab00b5ee6", "type": "github" }, "original": { @@ -4713,11 +3985,11 @@ "xwayland-satellite-unstable": "xwayland-satellite-unstable_2" }, "locked": { - "lastModified": 1759711756, - "narHash": "sha256-gdX1IM8MT3vTqLSXLDc9HNg30EcHkAgUXeNh4UpcyYU=", + "lastModified": 1758697829, + "narHash": "sha256-1pO4A16ssvjHNyHilpvxo15mBkAifCSOiLs3hBlrYdU=", "owner": "sodiboo", "repo": "niri-flake", - "rev": "372ecde34b3af73ae523d4b055f5bcdab00b5ee6", + "rev": "9dbeb8f613d2da107bff8375c2db7182a2bb79bb", "type": "github" }, "original": { @@ -4740,11 +4012,11 @@ "xwayland-satellite-unstable": "xwayland-satellite-unstable_3" }, "locked": { - "lastModified": 1758697829, - "narHash": "sha256-1pO4A16ssvjHNyHilpvxo15mBkAifCSOiLs3hBlrYdU=", + "lastModified": 1757870947, + "narHash": "sha256-0N8w6SB6a68kWioFmlr+KfwfG44KVjPjJIBSQKNdNhE=", "owner": "sodiboo", "repo": "niri-flake", - "rev": "9dbeb8f613d2da107bff8375c2db7182a2bb79bb", + "rev": "8e9b1a571399104e42d8fa5de6c28c63bff0c16a", "type": "github" }, "original": { @@ -4767,35 +4039,6 @@ "xwayland-satellite-stable": "xwayland-satellite-stable_4", "xwayland-satellite-unstable": "xwayland-satellite-unstable_4" }, - "locked": { - "lastModified": 1757870947, - "narHash": "sha256-0N8w6SB6a68kWioFmlr+KfwfG44KVjPjJIBSQKNdNhE=", - "owner": "sodiboo", - "repo": "niri-flake", - "rev": "8e9b1a571399104e42d8fa5de6c28c63bff0c16a", - "type": "github" - }, - "original": { - "owner": "sodiboo", - "repo": "niri-flake", - "type": "github" - } - }, - "niri-flake_5": { - "inputs": { - "niri-stable": "niri-stable_5", - "niri-unstable": "niri-unstable_5", - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ], - "nixpkgs-stable": "nixpkgs-stable_14", - "xwayland-satellite-stable": "xwayland-satellite-stable_5", - "xwayland-satellite-unstable": "xwayland-satellite-unstable_5" - }, "locked": { "lastModified": 1754797984, "narHash": "sha256-t2WFkdB2qUyZt5rdqmJ340kqhvQWWOCJBJIc1nQ/Hg4=", @@ -4862,23 +4105,6 @@ } }, "niri-stable_4": { - "flake": false, - "locked": { - "lastModified": 1756556321, - "narHash": "sha256-RLD89dfjN0RVO86C/Mot0T7aduCygPGaYbog566F0Qo=", - "owner": "YaLTeR", - "repo": "niri", - "rev": "01be0e65f4eb91a9cd624ac0b76aaeab765c7294", - "type": "github" - }, - "original": { - "owner": "YaLTeR", - "ref": "v25.08", - "repo": "niri", - "type": "github" - } - }, - "niri-stable_5": { "flake": false, "locked": { "lastModified": 1748151941, @@ -4896,22 +4122,6 @@ } }, "niri-unstable": { - "flake": false, - "locked": { - "lastModified": 1760426302, - "narHash": "sha256-HEeX0wTT2DTRAgADnOmcyk7k/J8KlFosBpFp0yIVfm0=", - "owner": "YaLTeR", - "repo": "niri", - "rev": "87dc96fa69738b5d57562a0a556efa7def138539", - "type": "github" - }, - "original": { - "owner": "YaLTeR", - "repo": "niri", - "type": "github" - } - }, - "niri-unstable_2": { "flake": false, "locked": { "lastModified": 1759395653, @@ -4927,7 +4137,7 @@ "type": "github" } }, - "niri-unstable_3": { + "niri-unstable_2": { "flake": false, "locked": { "lastModified": 1758691861, @@ -4943,7 +4153,7 @@ "type": "github" } }, - "niri-unstable_4": { + "niri-unstable_3": { "flake": false, "locked": { "lastModified": 1757832020, @@ -4959,7 +4169,7 @@ "type": "github" } }, - "niri-unstable_5": { + "niri-unstable_4": { "flake": false, "locked": { "lastModified": 1754742008, @@ -4981,27 +4191,6 @@ "nixpkgs" ] }, - "locked": { - "lastModified": 1760338583, - "narHash": "sha256-IGwy02SH5K2hzIFrKMRsCmyvwOwWxrcquiv4DbKL1S4=", - "owner": "lnl7", - "repo": "nix-darwin", - "rev": "9a9ab01072f78823ca627ae5e895e40d493c3ecf", - "type": "github" - }, - "original": { - "owner": "lnl7", - "repo": "nix-darwin", - "type": "github" - } - }, - "nix-darwin_2": { - "inputs": { - "nixpkgs": [ - "swarsel", - "nixpkgs" - ] - }, "locked": { "lastModified": 1758805352, "narHash": "sha256-BHdc43Lkayd+72W/NXRKHzX5AZ+28F3xaUs3a88/Uew=", @@ -5016,10 +4205,9 @@ "type": "github" } }, - "nix-darwin_3": { + "nix-darwin_2": { "inputs": { "nixpkgs": [ - "swarsel", "swarsel", "nixpkgs" ] @@ -5038,10 +4226,9 @@ "type": "github" } }, - "nix-darwin_4": { + "nix-darwin_3": { "inputs": { "nixpkgs": [ - "swarsel", "swarsel", "swarsel", "nixpkgs" @@ -5061,6 +4248,29 @@ "type": "github" } }, + "nix-darwin_4": { + "inputs": { + "nixpkgs": [ + "swarsel", + "swarsel", + "swarsel", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1751313918, + "narHash": "sha256-HsJM3XLa43WpG+665aGEh8iS8AfEwOIQWk3Mke3e7nk=", + "owner": "lnl7", + "repo": "nix-darwin", + "rev": "e04a388232d9a6ba56967ce5b53a8a6f713cdfcf", + "type": "github" + }, + "original": { + "owner": "lnl7", + "repo": "nix-darwin", + "type": "github" + } + }, "nix-darwin_5": { "inputs": { "nixpkgs": [ @@ -5110,32 +4320,6 @@ "type": "github" } }, - "nix-darwin_7": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1751313918, - "narHash": "sha256-HsJM3XLa43WpG+665aGEh8iS8AfEwOIQWk3Mke3e7nk=", - "owner": "lnl7", - "repo": "nix-darwin", - "rev": "e04a388232d9a6ba56967ce5b53a8a6f713cdfcf", - "type": "github" - }, - "original": { - "owner": "lnl7", - "repo": "nix-darwin", - "type": "github" - } - }, "nix-formatter-pack": { "inputs": { "nixpkgs": [ @@ -5289,62 +4473,12 @@ "type": "github" } }, - "nix-formatter-pack_7": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nix-on-droid", - "nixpkgs" - ], - "nmd": "nmd_13", - "nmt": "nmt_7" - }, - "locked": { - "lastModified": 1705252799, - "narHash": "sha256-HgSTREh7VoXjGgNDwKQUYcYo13rPkltW7IitHrTPA5c=", - "owner": "Gerschtli", - "repo": "nix-formatter-pack", - "rev": "2de39dedd79aab14c01b9e2934842051a160ffa5", - "type": "github" - }, - "original": { - "owner": "Gerschtli", - "repo": "nix-formatter-pack", - "type": "github" - } - }, "nix-index-database": { "inputs": { "nixpkgs": [ "nixpkgs" ] }, - "locked": { - "lastModified": 1760241904, - "narHash": "sha256-OD7QnaGEVNdukYEbJbUNWPsvnDrpbZOZxVIk6Pt9Jhw=", - "owner": "nix-community", - "repo": "nix-index-database", - "rev": "c9f5ea45f25652ec2f771f9426ccacb21cbbaeaa", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nix-index-database", - "type": "github" - } - }, - "nix-index-database_2": { - "inputs": { - "nixpkgs": [ - "swarsel", - "nixpkgs" - ] - }, "locked": { "lastModified": 1759637156, "narHash": "sha256-8NI1SqntLfKl6Q0Luemc3aIboezSJElofUrqipF5g78=", @@ -5359,10 +4493,9 @@ "type": "github" } }, - "nix-index-database_3": { + "nix-index-database_2": { "inputs": { "nixpkgs": [ - "swarsel", "swarsel", "nixpkgs" ] @@ -5381,10 +4514,9 @@ "type": "github" } }, - "nix-index-database_4": { + "nix-index-database_3": { "inputs": { "nixpkgs": [ - "swarsel", "swarsel", "swarsel", "nixpkgs" @@ -5404,13 +4536,12 @@ "type": "github" } }, - "nix-index-database_5": { + "nix-index-database_4": { "inputs": { "nixpkgs": [ "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ] }, @@ -5428,14 +4559,13 @@ "type": "github" } }, - "nix-index-database_6": { + "nix-index-database_5": { "inputs": { "nixpkgs": [ "swarsel", "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ] }, @@ -5453,7 +4583,7 @@ "type": "github" } }, - "nix-index-database_7": { + "nix-index-database_6": { "inputs": { "nixpkgs": [ "swarsel", @@ -5461,7 +4591,6 @@ "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ] }, @@ -5650,38 +4779,6 @@ "type": "github" } }, - "nix-on-droid_7": { - "inputs": { - "home-manager": "home-manager_14", - "nix-formatter-pack": "nix-formatter-pack_7", - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ], - "nixpkgs-docs": "nixpkgs-docs_7", - "nixpkgs-for-bootstrap": "nixpkgs-for-bootstrap_7", - "nmd": "nmd_14" - }, - "locked": { - "lastModified": 1720396533, - "narHash": "sha256-UFzk/hZWO1VkciIO5UPaSpJN8s765wsngUSvtJM6d5Q=", - "owner": "nix-community", - "repo": "nix-on-droid", - "rev": "f3d3b8294039f2f9a8fb7ea82c320f29c6b0fe25", - "type": "github" - }, - "original": { - "owner": "nix-community", - "ref": "release-24.05", - "repo": "nix-on-droid", - "type": "github" - } - }, "nix-topology": { "inputs": { "devshell": "devshell_2", @@ -5706,7 +4803,7 @@ "nix-topology_2": { "inputs": { "devshell": "devshell_4", - "flake-utils": "flake-utils_5", + "flake-utils": "flake-utils_4", "nixpkgs": "nixpkgs_10", "pre-commit-hooks": "pre-commit-hooks_3" }, @@ -5727,7 +4824,7 @@ "nix-topology_3": { "inputs": { "devshell": "devshell_6", - "flake-utils": "flake-utils_7", + "flake-utils": "flake-utils_6", "nixpkgs": "nixpkgs_18", "pre-commit-hooks": "pre-commit-hooks_5" }, @@ -5748,7 +4845,7 @@ "nix-topology_4": { "inputs": { "devshell": "devshell_8", - "flake-utils": "flake-utils_9", + "flake-utils": "flake-utils_8", "nixpkgs": "nixpkgs_26", "pre-commit-hooks": "pre-commit-hooks_7" }, @@ -5769,31 +4866,10 @@ "nix-topology_5": { "inputs": { "devshell": "devshell_10", - "flake-utils": "flake-utils_11", + "flake-utils": "flake-utils_10", "nixpkgs": "nixpkgs_34", "pre-commit-hooks": "pre-commit-hooks_9" }, - "locked": { - "lastModified": 1752093877, - "narHash": "sha256-P0TySh6sQl1EhfxjW9ZqGxEyUBSsEpdnchOe1QB0pLA=", - "owner": "oddlama", - "repo": "nix-topology", - "rev": "6a536c4b686ee4bcf07a7b0f8b823584560e2633", - "type": "github" - }, - "original": { - "owner": "oddlama", - "repo": "nix-topology", - "type": "github" - } - }, - "nix-topology_6": { - "inputs": { - "devshell": "devshell_12", - "flake-utils": "flake-utils_13", - "nixpkgs": "nixpkgs_42", - "pre-commit-hooks": "pre-commit-hooks_11" - }, "locked": { "lastModified": 1744142264, "narHash": "sha256-h5KyodobZm8dx/HSNN+basgdmjxrQxudjrss4gAQpZk=", @@ -5808,12 +4884,12 @@ "type": "github" } }, - "nix-topology_7": { + "nix-topology_6": { "inputs": { - "devshell": "devshell_14", - "flake-utils": "flake-utils_15", - "nixpkgs": "nixpkgs_50", - "pre-commit-hooks": "pre-commit-hooks_13" + "devshell": "devshell_12", + "flake-utils": "flake-utils_12", + "nixpkgs": "nixpkgs_42", + "pre-commit-hooks": "pre-commit-hooks_11" }, "locked": { "lastModified": 1744142264, @@ -5850,7 +4926,7 @@ }, "nixgl_2": { "inputs": { - "flake-utils": "flake-utils_6", + "flake-utils": "flake-utils_5", "nixpkgs": "nixpkgs_11" }, "locked": { @@ -5869,7 +4945,7 @@ }, "nixgl_3": { "inputs": { - "flake-utils": "flake-utils_8", + "flake-utils": "flake-utils_7", "nixpkgs": "nixpkgs_19" }, "locked": { @@ -5888,7 +4964,7 @@ }, "nixgl_4": { "inputs": { - "flake-utils": "flake-utils_10", + "flake-utils": "flake-utils_9", "nixpkgs": "nixpkgs_27" }, "locked": { @@ -5907,28 +4983,9 @@ }, "nixgl_5": { "inputs": { - "flake-utils": "flake-utils_12", + "flake-utils": "flake-utils_11", "nixpkgs": "nixpkgs_35" }, - "locked": { - "lastModified": 1752054764, - "narHash": "sha256-Ob/HuUhANoDs+nvYqyTKrkcPXf4ZgXoqMTQoCK0RFgQ=", - "owner": "guibou", - "repo": "nixGL", - "rev": "a8e1ce7d49a149ed70df676785b07f63288f53c5", - "type": "github" - }, - "original": { - "owner": "guibou", - "repo": "nixGL", - "type": "github" - } - }, - "nixgl_6": { - "inputs": { - "flake-utils": "flake-utils_14", - "nixpkgs": "nixpkgs_43" - }, "locked": { "lastModified": 1751696036, "narHash": "sha256-hXq4IOgSdAAaF/9q/2U8TBDL7aXZyQmtq4wl6USZjKo=", @@ -5943,10 +5000,10 @@ "type": "github" } }, - "nixgl_7": { + "nixgl_6": { "inputs": { - "flake-utils": "flake-utils_16", - "nixpkgs": "nixpkgs_51" + "flake-utils": "flake-utils_13", + "nixpkgs": "nixpkgs_43" }, "locked": { "lastModified": 1751696036, @@ -6052,21 +5109,6 @@ "type": "github" } }, - "nixlib_7": { - "locked": { - "lastModified": 1736643958, - "narHash": "sha256-tmpqTSWVRJVhpvfSN9KXBvKEXplrwKnSZNAoNPf/S/s=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "1418bc28a52126761c02dd3d89b2d8ca0f521181", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, "nixos-generators": { "inputs": { "nixlib": "nixlib", @@ -6208,50 +5250,7 @@ "type": "github" } }, - "nixos-generators_7": { - "inputs": { - "nixlib": "nixlib_7", - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1751903740, - "narHash": "sha256-PeSkNMvkpEvts+9DjFiop1iT2JuBpyknmBUs0Un0a4I=", - "owner": "nix-community", - "repo": "nixos-generators", - "rev": "032decf9db65efed428afd2fa39d80f7089085eb", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixos-generators", - "type": "github" - } - }, "nixos-hardware": { - "locked": { - "lastModified": 1760106635, - "narHash": "sha256-2GoxVaKWTHBxRoeUYSjv0AfSOx4qw5CWSFz2b+VolKU=", - "owner": "NixOS", - "repo": "nixos-hardware", - "rev": "9ed85f8afebf2b7478f25db0a98d0e782c0ed903", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "master", - "repo": "nixos-hardware", - "type": "github" - } - }, - "nixos-hardware_2": { "locked": { "lastModified": 1759582739, "narHash": "sha256-spZegilADH0q5OngM86u6NmXxduCNv5eX9vCiUPhOYc=", @@ -6267,7 +5266,7 @@ "type": "github" } }, - "nixos-hardware_3": { + "nixos-hardware_2": { "locked": { "lastModified": 1758663926, "narHash": "sha256-6CFdj7Xs616t1W4jLDH7IohAAvl5Dyib3qEv/Uqw1rk=", @@ -6283,7 +5282,7 @@ "type": "github" } }, - "nixos-hardware_4": { + "nixos-hardware_3": { "locked": { "lastModified": 1757891025, "narHash": "sha256-NfiTk59huy/YK9H4W4wVwRYyiP2u86QqROM5KK4f5F4=", @@ -6299,7 +5298,7 @@ "type": "github" } }, - "nixos-hardware_5": { + "nixos-hardware_4": { "locked": { "lastModified": 1754564048, "narHash": "sha256-dz303vGuzWjzOPOaYkS9xSW+B93PSAJxvBd6CambXVA=", @@ -6315,7 +5314,7 @@ "type": "github" } }, - "nixos-hardware_6": { + "nixos-hardware_5": { "locked": { "lastModified": 1751432711, "narHash": "sha256-136MeWtckSHTN9Z2WRNRdZ8oRP3vyx3L8UxeBYE+J9w=", @@ -6331,7 +5330,7 @@ "type": "github" } }, - "nixos-hardware_7": { + "nixos-hardware_6": { "locked": { "lastModified": 1751432711, "narHash": "sha256-136MeWtckSHTN9Z2WRNRdZ8oRP3vyx3L8UxeBYE+J9w=", @@ -6381,11 +5380,11 @@ }, "nixpkgs-dev_2": { "locked": { - "lastModified": 1759233809, - "narHash": "sha256-ww6JlKuclxzcBb+cb4GCnVw4PtI+7xd3J9/ctINWKeA=", + "lastModified": 1758012660, + "narHash": "sha256-f3jC14FeFhapXEKzk4Hfy3LXxZ2PIpmCxciVniHXSLA=", "owner": "Swarsel", "repo": "nixpkgs", - "rev": "d3e334a2a4f9d50568bf03ec62cd445faac7ce9e", + "rev": "3c0bb56bf5189fd91ead7e1443976301a42fac37", "type": "github" }, "original": { @@ -6412,22 +5411,6 @@ } }, "nixpkgs-dev_4": { - "locked": { - "lastModified": 1758012660, - "narHash": "sha256-f3jC14FeFhapXEKzk4Hfy3LXxZ2PIpmCxciVniHXSLA=", - "owner": "Swarsel", - "repo": "nixpkgs", - "rev": "3c0bb56bf5189fd91ead7e1443976301a42fac37", - "type": "github" - }, - "original": { - "owner": "Swarsel", - "ref": "main", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs-dev_5": { "locked": { "lastModified": 1756088794, "narHash": "sha256-aBaRmk3lNNUm/1H1Jf6hA8miLg3HsYEhcuxUXTGa2gw=", @@ -6443,7 +5426,7 @@ "type": "github" } }, - "nixpkgs-dev_6": { + "nixpkgs-dev_5": { "locked": { "lastModified": 1752736260, "narHash": "sha256-90Gt98hmw/20aOAd7KaSW6otXu7MOBctRmI9RlXD/s0=", @@ -6459,7 +5442,7 @@ "type": "github" } }, - "nixpkgs-dev_7": { + "nixpkgs-dev_6": { "locked": { "lastModified": 1752440522, "narHash": "sha256-CInQkEG3f8XwIBQxYFhuFCT+T++JPstThfifAMD0yRk=", @@ -6571,22 +5554,6 @@ "type": "github" } }, - "nixpkgs-docs_7": { - "locked": { - "lastModified": 1705957679, - "narHash": "sha256-Q8LJaVZGJ9wo33wBafvZSzapYsjOaNjP/pOnSiKVGHY=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "9a333eaa80901efe01df07eade2c16d183761fa3", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "release-23.05", - "repo": "nixpkgs", - "type": "github" - } - }, "nixpkgs-for-bootstrap": { "locked": { "lastModified": 1720244366, @@ -6683,22 +5650,6 @@ "type": "github" } }, - "nixpkgs-for-bootstrap_7": { - "locked": { - "lastModified": 1720244366, - "narHash": "sha256-WrDV0FPMVd2Sq9hkR5LNHudS3OSMmUrs90JUTN+MXpA=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "49ee0e94463abada1de470c9c07bfc12b36dcf40", - "type": "github" - }, - "original": { - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "49ee0e94463abada1de470c9c07bfc12b36dcf40", - "type": "github" - } - }, "nixpkgs-kernel": { "locked": { "lastModified": 1748026106, @@ -6801,23 +5752,6 @@ "type": "github" } }, - "nixpkgs-kernel_7": { - "locked": { - "lastModified": 1748026106, - "narHash": "sha256-6m1Y3/4pVw1RWTsrkAK2VMYSzG4MMIj7sqUy7o8th1o=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "063f43f2dbdef86376cc29ad646c45c46e93234c", - "type": "github" - }, - "original": { - "narHash": "sha256-6m1Y3/4pVw1RWTsrkAK2VMYSzG4MMIj7sqUy7o8th1o=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "063f43f2dbdef86376cc29ad646c45c46e93234c", - "type": "github" - } - }, "nixpkgs-lib": { "locked": { "lastModified": 1754788789, @@ -6874,11 +5808,11 @@ }, "nixpkgs-lib_13": { "locked": { - "lastModified": 1751159883, - "narHash": "sha256-urW/Ylk9FIfvXfliA1ywh75yszAbiTEVgpPeinFyVZo=", + "lastModified": 1753579242, + "narHash": "sha256-zvaMGVn14/Zz8hnp4VWT9xVnhc8vuL3TStRqwk22biA=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "14a40a1d7fb9afa4739275ac642ed7301a9ba1ab", + "rev": "0f36c44e01a6129be94e3ade315a5883f0228a6e", "type": "github" }, "original": { @@ -6889,23 +5823,26 @@ }, "nixpkgs-lib_14": { "locked": { - "lastModified": 1719876945, - "narHash": "sha256-Fm2rDDs86sHy0/1jxTOKB1118Q0O3Uc7EC0iXvXKpbI=", - "type": "tarball", - "url": "https://github.com/NixOS/nixpkgs/archive/5daf0514482af3f97abaefc78a6606365c9108e2.tar.gz" + "lastModified": 1754788789, + "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", + "owner": "nix-community", + "repo": "nixpkgs.lib", + "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", + "type": "github" }, "original": { - "type": "tarball", - "url": "https://github.com/NixOS/nixpkgs/archive/5daf0514482af3f97abaefc78a6606365c9108e2.tar.gz" + "owner": "nix-community", + "repo": "nixpkgs.lib", + "type": "github" } }, "nixpkgs-lib_15": { "locked": { - "lastModified": 1753579242, - "narHash": "sha256-zvaMGVn14/Zz8hnp4VWT9xVnhc8vuL3TStRqwk22biA=", + "lastModified": 1754788789, + "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "0f36c44e01a6129be94e3ade315a5883f0228a6e", + "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", "type": "github" }, "original": { @@ -6944,36 +5881,6 @@ "type": "github" } }, - "nixpkgs-lib_18": { - "locked": { - "lastModified": 1754788789, - "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, - "nixpkgs-lib_19": { - "locked": { - "lastModified": 1754788789, - "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, "nixpkgs-lib_2": { "locked": { "lastModified": 1719876945, @@ -6986,36 +5893,6 @@ "url": "https://github.com/NixOS/nixpkgs/archive/5daf0514482af3f97abaefc78a6606365c9108e2.tar.gz" } }, - "nixpkgs-lib_20": { - "locked": { - "lastModified": 1754788789, - "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, - "nixpkgs-lib_21": { - "locked": { - "lastModified": 1754788789, - "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, "nixpkgs-lib_3": { "locked": { "lastModified": 1754788789, @@ -7072,11 +5949,11 @@ }, "nixpkgs-lib_7": { "locked": { - "lastModified": 1754788789, - "narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=", + "lastModified": 1753579242, + "narHash": "sha256-zvaMGVn14/Zz8hnp4VWT9xVnhc8vuL3TStRqwk22biA=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "a73b9c743612e4244d865a2fdee11865283c04e6", + "rev": "0f36c44e01a6129be94e3ade315a5883f0228a6e", "type": "github" }, "original": { @@ -7099,11 +5976,11 @@ }, "nixpkgs-lib_9": { "locked": { - "lastModified": 1753579242, - "narHash": "sha256-zvaMGVn14/Zz8hnp4VWT9xVnhc8vuL3TStRqwk22biA=", + "lastModified": 1751159883, + "narHash": "sha256-urW/Ylk9FIfvXfliA1ywh75yszAbiTEVgpPeinFyVZo=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "0f36c44e01a6129be94e3ade315a5883f0228a6e", + "rev": "14a40a1d7fb9afa4739275ac642ed7301a9ba1ab", "type": "github" }, "original": { @@ -7114,11 +5991,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1760139962, - "narHash": "sha256-4xggC56Rub3WInz5eD7EZWXuLXpNvJiUPahGtMkwtuc=", + "lastModified": 1759580034, + "narHash": "sha256-YWo57PL7mGZU7D4WeKFMiW4ex/O6ZolUS6UNBHTZfkI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7e297ddff44a3cc93673bb38d0374df8d0ad73e4", + "rev": "3bcc93c5f7a4b30335d31f21e2f1281cba68c318", "type": "github" }, "original": { @@ -7224,22 +6101,6 @@ "type": "github" } }, - "nixpkgs-stable24_05_7": { - "locked": { - "lastModified": 1735563628, - "narHash": "sha256-OnSAY7XDSx7CtDoqNh8jwVwh4xNL/2HaJxGjryLWzX8=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b134951a4c9f3c995fd7be05f3243f8ecd65d798", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-24.05", - "repo": "nixpkgs", - "type": "github" - } - }, "nixpkgs-stable24_11": { "locked": { "lastModified": 1751274312, @@ -7336,22 +6197,6 @@ "type": "github" } }, - "nixpkgs-stable24_11_7": { - "locked": { - "lastModified": 1751274312, - "narHash": "sha256-/bVBlRpECLVzjV19t5KMdMFWSwKLtb5RyXdjz3LJT+g=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "50ab793786d9de88ee30ec4e4c24fb4236fc2674", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-24.11", - "repo": "nixpkgs", - "type": "github" - } - }, "nixpkgs-stable_10": { "locked": { "lastModified": 1751274312, @@ -7370,11 +6215,11 @@ }, "nixpkgs-stable_11": { "locked": { - "lastModified": 1757810152, - "narHash": "sha256-Vp9K5ol6h0J90jG7Rm4RWZsCB3x7v5VPx588TQ1dkfs=", + "lastModified": 1754689972, + "narHash": "sha256-eogqv6FqZXHgqrbZzHnq43GalnRbLTkbBbFtEfm1RSc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9a094440e02a699be5c57453a092a8baf569bdad", + "rev": "fc756aa6f5d3e2e5666efcf865d190701fef150a", "type": "github" }, "original": { @@ -7386,11 +6231,11 @@ }, "nixpkgs-stable_12": { "locked": { - "lastModified": 1757810152, - "narHash": "sha256-Vp9K5ol6h0J90jG7Rm4RWZsCB3x7v5VPx588TQ1dkfs=", + "lastModified": 1754689972, + "narHash": "sha256-eogqv6FqZXHgqrbZzHnq43GalnRbLTkbBbFtEfm1RSc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9a094440e02a699be5c57453a092a8baf569bdad", + "rev": "fc756aa6f5d3e2e5666efcf865d190701fef150a", "type": "github" }, "original": { @@ -7417,54 +6262,6 @@ } }, "nixpkgs-stable_14": { - "locked": { - "lastModified": 1754689972, - "narHash": "sha256-eogqv6FqZXHgqrbZzHnq43GalnRbLTkbBbFtEfm1RSc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fc756aa6f5d3e2e5666efcf865d190701fef150a", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-25.05", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs-stable_15": { - "locked": { - "lastModified": 1754689972, - "narHash": "sha256-eogqv6FqZXHgqrbZzHnq43GalnRbLTkbBbFtEfm1RSc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fc756aa6f5d3e2e5666efcf865d190701fef150a", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-25.05", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs-stable_16": { - "locked": { - "lastModified": 1751274312, - "narHash": "sha256-/bVBlRpECLVzjV19t5KMdMFWSwKLtb5RyXdjz3LJT+g=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "50ab793786d9de88ee30ec4e4c24fb4236fc2674", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-24.11", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs-stable_17": { "locked": { "lastModified": 1751741127, "narHash": "sha256-t75Shs76NgxjZSgvvZZ9qOmz5zuBE8buUaYD28BMTxg=", @@ -7480,7 +6277,7 @@ "type": "github" } }, - "nixpkgs-stable_18": { + "nixpkgs-stable_15": { "locked": { "lastModified": 1751274312, "narHash": "sha256-/bVBlRpECLVzjV19t5KMdMFWSwKLtb5RyXdjz3LJT+g=", @@ -7496,7 +6293,7 @@ "type": "github" } }, - "nixpkgs-stable_19": { + "nixpkgs-stable_16": { "locked": { "lastModified": 1751741127, "narHash": "sha256-t75Shs76NgxjZSgvvZZ9qOmz5zuBE8buUaYD28BMTxg=", @@ -7514,11 +6311,11 @@ }, "nixpkgs-stable_2": { "locked": { - "lastModified": 1760139962, - "narHash": "sha256-4xggC56Rub3WInz5eD7EZWXuLXpNvJiUPahGtMkwtuc=", + "lastModified": 1759580034, + "narHash": "sha256-YWo57PL7mGZU7D4WeKFMiW4ex/O6ZolUS6UNBHTZfkI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7e297ddff44a3cc93673bb38d0374df8d0ad73e4", + "rev": "3bcc93c5f7a4b30335d31f21e2f1281cba68c318", "type": "github" }, "original": { @@ -7530,11 +6327,11 @@ }, "nixpkgs-stable_3": { "locked": { - "lastModified": 1760139962, - "narHash": "sha256-4xggC56Rub3WInz5eD7EZWXuLXpNvJiUPahGtMkwtuc=", + "lastModified": 1759580034, + "narHash": "sha256-YWo57PL7mGZU7D4WeKFMiW4ex/O6ZolUS6UNBHTZfkI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7e297ddff44a3cc93673bb38d0374df8d0ad73e4", + "rev": "3bcc93c5f7a4b30335d31f21e2f1281cba68c318", "type": "github" }, "original": { @@ -7546,27 +6343,27 @@ }, "nixpkgs-stable_4": { "locked": { - "lastModified": 1759580034, - "narHash": "sha256-YWo57PL7mGZU7D4WeKFMiW4ex/O6ZolUS6UNBHTZfkI=", + "lastModified": 1751274312, + "narHash": "sha256-/bVBlRpECLVzjV19t5KMdMFWSwKLtb5RyXdjz3LJT+g=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "3bcc93c5f7a4b30335d31f21e2f1281cba68c318", + "rev": "50ab793786d9de88ee30ec4e4c24fb4236fc2674", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-25.05", + "ref": "nixos-24.11", "repo": "nixpkgs", "type": "github" } }, "nixpkgs-stable_5": { "locked": { - "lastModified": 1759580034, - "narHash": "sha256-YWo57PL7mGZU7D4WeKFMiW4ex/O6ZolUS6UNBHTZfkI=", + "lastModified": 1758589230, + "narHash": "sha256-zMTCFGe8aVGTEr2RqUi/QzC1nOIQ0N1HRsbqB4f646k=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "3bcc93c5f7a4b30335d31f21e2f1281cba68c318", + "rev": "d1d883129b193f0b495d75c148c2c3a7d95789a0", "type": "github" }, "original": { @@ -7578,11 +6375,11 @@ }, "nixpkgs-stable_6": { "locked": { - "lastModified": 1759580034, - "narHash": "sha256-YWo57PL7mGZU7D4WeKFMiW4ex/O6ZolUS6UNBHTZfkI=", + "lastModified": 1758589230, + "narHash": "sha256-zMTCFGe8aVGTEr2RqUi/QzC1nOIQ0N1HRsbqB4f646k=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "3bcc93c5f7a4b30335d31f21e2f1281cba68c318", + "rev": "d1d883129b193f0b495d75c148c2c3a7d95789a0", "type": "github" }, "original": { @@ -7610,11 +6407,11 @@ }, "nixpkgs-stable_8": { "locked": { - "lastModified": 1758589230, - "narHash": "sha256-zMTCFGe8aVGTEr2RqUi/QzC1nOIQ0N1HRsbqB4f646k=", + "lastModified": 1757810152, + "narHash": "sha256-Vp9K5ol6h0J90jG7Rm4RWZsCB3x7v5VPx588TQ1dkfs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d1d883129b193f0b495d75c148c2c3a7d95789a0", + "rev": "9a094440e02a699be5c57453a092a8baf569bdad", "type": "github" }, "original": { @@ -7626,11 +6423,11 @@ }, "nixpkgs-stable_9": { "locked": { - "lastModified": 1758589230, - "narHash": "sha256-zMTCFGe8aVGTEr2RqUi/QzC1nOIQ0N1HRsbqB4f646k=", + "lastModified": 1757810152, + "narHash": "sha256-Vp9K5ol6h0J90jG7Rm4RWZsCB3x7v5VPx588TQ1dkfs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d1d883129b193f0b495d75c148c2c3a7d95789a0", + "rev": "9a094440e02a699be5c57453a092a8baf569bdad", "type": "github" }, "original": { @@ -7673,11 +6470,11 @@ }, "nixpkgs_12": { "locked": { - "lastModified": 1759381078, - "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", + "lastModified": 1758427187, + "narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=", "owner": "nixos", "repo": "nixpkgs", - "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", + "rev": "554be6495561ff07b6c724047bdd7e0716aa7b46", "type": "github" }, "original": { @@ -7705,11 +6502,11 @@ }, "nixpkgs_14": { "locked": { - "lastModified": 1759381078, - "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", + "lastModified": 1758427187, + "narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=", "owner": "nixos", "repo": "nixpkgs", - "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", + "rev": "554be6495561ff07b6c724047bdd7e0716aa7b46", "type": "github" }, "original": { @@ -7721,11 +6518,11 @@ }, "nixpkgs_15": { "locked": { - "lastModified": 1759570798, - "narHash": "sha256-kbkzsUKYzKhuvMOuxt/aTwWU2mnrwoY964yN3Y4dE98=", + "lastModified": 1758262103, + "narHash": "sha256-aBGl3XEOsjWw6W3AHiKibN7FeoG73dutQQEqnd/etR8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0d4f673a88f8405ae14484e6a1ea870e0ba4ca26", + "rev": "12bd230118a1901a4a5d393f9f56b6ad7e571d01", "type": "github" }, "original": { @@ -7737,11 +6534,11 @@ }, "nixpkgs_16": { "locked": { - "lastModified": 1758690382, - "narHash": "sha256-NY3kSorgqE5LMm1LqNwGne3ZLMF2/ILgLpFr1fS4X3o=", + "lastModified": 1756819007, + "narHash": "sha256-12V64nKG/O/guxSYnr5/nq1EfqwJCdD2+cIGmhz3nrE=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "e643668fd71b949c53f8626614b21ff71a07379d", + "rev": "aaff8c16d7fc04991cac6245bee1baa31f72b1e1", "type": "github" }, "original": { @@ -7816,11 +6613,11 @@ }, "nixpkgs_20": { "locked": { - "lastModified": 1758427187, - "narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=", + "lastModified": 1757745802, + "narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=", "owner": "nixos", "repo": "nixpkgs", - "rev": "554be6495561ff07b6c724047bdd7e0716aa7b46", + "rev": "c23193b943c6c689d70ee98ce3128239ed9e32d1", "type": "github" }, "original": { @@ -7848,11 +6645,11 @@ }, "nixpkgs_22": { "locked": { - "lastModified": 1758427187, - "narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=", + "lastModified": 1757745802, + "narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=", "owner": "nixos", "repo": "nixpkgs", - "rev": "554be6495561ff07b6c724047bdd7e0716aa7b46", + "rev": "c23193b943c6c689d70ee98ce3128239ed9e32d1", "type": "github" }, "original": { @@ -7864,11 +6661,11 @@ }, "nixpkgs_23": { "locked": { - "lastModified": 1758262103, - "narHash": "sha256-aBGl3XEOsjWw6W3AHiKibN7FeoG73dutQQEqnd/etR8=", + "lastModified": 1757746433, + "narHash": "sha256-fEvTiU4s9lWgW7mYEU/1QUPirgkn+odUBTaindgiziY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "12bd230118a1901a4a5d393f9f56b6ad7e571d01", + "rev": "6d7ec06d6868ac6d94c371458fc2391ded9ff13d", "type": "github" }, "original": { @@ -7943,11 +6740,11 @@ }, "nixpkgs_28": { "locked": { - "lastModified": 1757745802, - "narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=", + "lastModified": 1754498491, + "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c23193b943c6c689d70ee98ce3128239ed9e32d1", + "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", "type": "github" }, "original": { @@ -7990,11 +6787,11 @@ }, "nixpkgs_30": { "locked": { - "lastModified": 1757745802, - "narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=", + "lastModified": 1754498491, + "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c23193b943c6c689d70ee98ce3128239ed9e32d1", + "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", "type": "github" }, "original": { @@ -8006,11 +6803,11 @@ }, "nixpkgs_31": { "locked": { - "lastModified": 1757746433, - "narHash": "sha256-fEvTiU4s9lWgW7mYEU/1QUPirgkn+odUBTaindgiziY=", + "lastModified": 1744868846, + "narHash": "sha256-5RJTdUHDmj12Qsv7XOhuospjAjATNiTMElplWnJE9Hs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6d7ec06d6868ac6d94c371458fc2391ded9ff13d", + "rev": "ebe4301cbd8f81c4f8d3244b3632338bbeb6d49c", "type": "github" }, "original": { @@ -8022,11 +6819,11 @@ }, "nixpkgs_32": { "locked": { - "lastModified": 1756819007, - "narHash": "sha256-12V64nKG/O/guxSYnr5/nq1EfqwJCdD2+cIGmhz3nrE=", + "lastModified": 1751792365, + "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "aaff8c16d7fc04991cac6245bee1baa31f72b1e1", + "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", "type": "github" }, "original": { @@ -8038,11 +6835,11 @@ }, "nixpkgs_33": { "locked": { - "lastModified": 1754243818, - "narHash": "sha256-sEPw2W01UPf0xNGnMGNZIaE1XHkk7O+lLLetYEXVZHk=", + "lastModified": 1751203939, + "narHash": "sha256-omYD+H5LlSihz2DRfv90I8Oeo7JNEwvcHPHX+6nMIM4=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "c460617dfb709a67d18bb31e15e455390ee4ee1c", + "rev": "650e71cbf76de8dd16f5648a96981b726c4ef8fe", "type": "github" }, "original": { @@ -8085,11 +6882,11 @@ }, "nixpkgs_36": { "locked": { - "lastModified": 1754498491, - "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", + "lastModified": 1751792365, + "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", + "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", "type": "github" }, "original": { @@ -8117,11 +6914,11 @@ }, "nixpkgs_38": { "locked": { - "lastModified": 1754498491, - "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", + "lastModified": 1751792365, + "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", + "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", "type": "github" }, "original": { @@ -8149,11 +6946,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1760284886, - "narHash": "sha256-TK9Kr0BYBQ/1P5kAsnNQhmWWKgmZXwUQr4ZMjCzWf2c=", + "lastModified": 1759381078, + "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "cf3f5c4def3c7b5f1fc012b3d839575dbe552d43", + "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", "type": "github" }, "original": { @@ -8165,11 +6962,11 @@ }, "nixpkgs_40": { "locked": { - "lastModified": 1751792365, - "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", + "lastModified": 1748460289, + "narHash": "sha256-7doLyJBzCllvqX4gszYtmZUToxKvMUrg45EUWaUYmBg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", + "rev": "96ec055edbe5ee227f28cdbc3f1ddf1df5965102", "type": "github" }, "original": { @@ -8308,16 +7105,16 @@ }, "nixpkgs_49": { "locked": { - "lastModified": 1751203939, - "narHash": "sha256-omYD+H5LlSihz2DRfv90I8Oeo7JNEwvcHPHX+6nMIM4=", + "lastModified": 1750865895, + "narHash": "sha256-p2dWAQcLVzquy9LxYCZPwyUdugw78Qv3ChvnX755qHA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "650e71cbf76de8dd16f5648a96981b726c4ef8fe", + "rev": "61c0f513911459945e2cb8bf333dc849f1b976ff", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-unstable-small", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } @@ -8340,148 +7137,21 @@ }, "nixpkgs_50": { "locked": { - "lastModified": 1730531603, - "narHash": "sha256-Dqg6si5CqIzm87sp57j5nTaeBbWhHFaVyG7V6L8k3lY=", + "lastModified": 1750865895, + "narHash": "sha256-p2dWAQcLVzquy9LxYCZPwyUdugw78Qv3ChvnX755qHA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7ffd9ae656aec493492b44d0ddfb28e79a1ea25d", + "rev": "61c0f513911459945e2cb8bf333dc849f1b976ff", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-unstable", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } }, "nixpkgs_51": { - "locked": { - "lastModified": 1746378225, - "narHash": "sha256-OeRSuL8PUjIfL3Q0fTbNJD/fmv1R+K2JAOqWJd3Oceg=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "93e8cdce7afc64297cfec447c311470788131cd9", - "type": "github" - }, - "original": { - "owner": "nixos", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_52": { - "locked": { - "lastModified": 1751792365, - "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_53": { - "locked": { - "lastModified": 1720957393, - "narHash": "sha256-oedh2RwpjEa+TNxhg5Je9Ch6d3W1NKi7DbRO1ziHemA=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "693bc46d169f5af9c992095736e82c3488bf7dbb", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_54": { - "locked": { - "lastModified": 1751792365, - "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_55": { - "locked": { - "lastModified": 1744868846, - "narHash": "sha256-5RJTdUHDmj12Qsv7XOhuospjAjATNiTMElplWnJE9Hs=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "ebe4301cbd8f81c4f8d3244b3632338bbeb6d49c", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_56": { - "locked": { - "lastModified": 1748460289, - "narHash": "sha256-7doLyJBzCllvqX4gszYtmZUToxKvMUrg45EUWaUYmBg=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "96ec055edbe5ee227f28cdbc3f1ddf1df5965102", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_57": { - "locked": { - "lastModified": 1750865895, - "narHash": "sha256-p2dWAQcLVzquy9LxYCZPwyUdugw78Qv3ChvnX755qHA=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "61c0f513911459945e2cb8bf333dc849f1b976ff", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_58": { - "locked": { - "lastModified": 1750865895, - "narHash": "sha256-p2dWAQcLVzquy9LxYCZPwyUdugw78Qv3ChvnX755qHA=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "61c0f513911459945e2cb8bf333dc849f1b976ff", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_59": { "locked": { "lastModified": 1755615617, "narHash": "sha256-HMwfAJBdrr8wXAkbGhtcby1zGFvs+StOp19xNsbqdOg=", @@ -8497,23 +7167,7 @@ "type": "github" } }, - "nixpkgs_6": { - "locked": { - "lastModified": 1760284886, - "narHash": "sha256-TK9Kr0BYBQ/1P5kAsnNQhmWWKgmZXwUQr4ZMjCzWf2c=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "cf3f5c4def3c7b5f1fc012b3d839575dbe552d43", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_60": { + "nixpkgs_52": { "locked": { "lastModified": 1750865895, "narHash": "sha256-p2dWAQcLVzquy9LxYCZPwyUdugw78Qv3ChvnX755qHA=", @@ -8529,7 +7183,7 @@ "type": "github" } }, - "nixpkgs_61": { + "nixpkgs_53": { "locked": { "lastModified": 1757745802, "narHash": "sha256-hLEO2TPj55KcUFUU1vgtHE9UEIOjRcH/4QbmfHNF820=", @@ -8545,7 +7199,7 @@ "type": "github" } }, - "nixpkgs_62": { + "nixpkgs_54": { "locked": { "lastModified": 1754800730, "narHash": "sha256-HfVZCXic9XLBgybP0318ym3cDnGwBs/+H5MgxFVYF4I=", @@ -8561,7 +7215,7 @@ "type": "github" } }, - "nixpkgs_63": { + "nixpkgs_55": { "locked": { "lastModified": 1758427187, "narHash": "sha256-pHpxZ/IyCwoTQPtFIAG2QaxuSm8jWzrzBGjwQZIttJc=", @@ -8577,7 +7231,7 @@ "type": "github" } }, - "nixpkgs_64": { + "nixpkgs_56": { "locked": { "lastModified": 1754800730, "narHash": "sha256-HfVZCXic9XLBgybP0318ym3cDnGwBs/+H5MgxFVYF4I=", @@ -8593,7 +7247,7 @@ "type": "github" } }, - "nixpkgs_65": { + "nixpkgs_57": { "locked": { "lastModified": 1759381078, "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", @@ -8609,7 +7263,7 @@ "type": "github" } }, - "nixpkgs_66": { + "nixpkgs_58": { "locked": { "lastModified": 1759733170, "narHash": "sha256-TXnlsVb5Z8HXZ6mZoeOAIwxmvGHp1g4Dw89eLvIwKVI=", @@ -8625,7 +7279,7 @@ "type": "github" } }, - "nixpkgs_67": { + "nixpkgs_59": { "locked": { "lastModified": 1754800730, "narHash": "sha256-HfVZCXic9XLBgybP0318ym3cDnGwBs/+H5MgxFVYF4I=", @@ -8641,29 +7295,13 @@ "type": "github" } }, - "nixpkgs_68": { + "nixpkgs_6": { "locked": { - "lastModified": 1760284886, - "narHash": "sha256-TK9Kr0BYBQ/1P5kAsnNQhmWWKgmZXwUQr4ZMjCzWf2c=", + "lastModified": 1759381078, + "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "cf3f5c4def3c7b5f1fc012b3d839575dbe552d43", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_69": { - "locked": { - "lastModified": 1759733170, - "narHash": "sha256-TXnlsVb5Z8HXZ6mZoeOAIwxmvGHp1g4Dw89eLvIwKVI=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "8913c168d1c56dc49a7718685968f38752171c3b", + "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", "type": "github" }, "original": { @@ -8675,27 +7313,11 @@ }, "nixpkgs_7": { "locked": { - "lastModified": 1760164275, - "narHash": "sha256-gKl2Gtro/LNf8P+4L3S2RsZ0G390ccd5MyXYrTdMCFE=", + "lastModified": 1759570798, + "narHash": "sha256-kbkzsUKYzKhuvMOuxt/aTwWU2mnrwoY964yN3Y4dE98=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "362791944032cb532aabbeed7887a441496d5e6e", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_70": { - "locked": { - "lastModified": 1754800730, - "narHash": "sha256-HfVZCXic9XLBgybP0318ym3cDnGwBs/+H5MgxFVYF4I=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "641d909c4a7538f1539da9240dedb1755c907e40", + "rev": "0d4f673a88f8405ae14484e6a1ea870e0ba4ca26", "type": "github" }, "original": { @@ -8822,50 +7444,6 @@ "type": "sourcehut" } }, - "nmd_13": { - "flake": false, - "locked": { - "lastModified": 1666190571, - "narHash": "sha256-Z1hc7M9X6L+H83o9vOprijpzhTfOBjd0KmUTnpHAVjA=", - "owner": "rycee", - "repo": "nmd", - "rev": "b75d312b4f33bd3294cd8ae5c2ca8c6da2afc169", - "type": "gitlab" - }, - "original": { - "owner": "rycee", - "repo": "nmd", - "type": "gitlab" - } - }, - "nmd_14": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nix-on-droid", - "nixpkgs-docs" - ], - "scss-reset": "scss-reset_7" - }, - "locked": { - "lastModified": 1705050560, - "narHash": "sha256-x3zzcdvhJpodsmdjqB4t5mkVW22V3wqHLOun0KRBzUI=", - "owner": "~rycee", - "repo": "nmd", - "rev": "66d9334933119c36f91a78d565c152a4fdc8d3d3", - "type": "sourcehut" - }, - "original": { - "owner": "~rycee", - "repo": "nmd", - "type": "sourcehut" - } - }, "nmd_2": { "inputs": { "nixpkgs": [ @@ -9120,22 +7698,6 @@ "type": "gitlab" } }, - "nmt_7": { - "flake": false, - "locked": { - "lastModified": 1648075362, - "narHash": "sha256-u36WgzoA84dMVsGXzml4wZ5ckGgfnvS0ryzo/3zn/Pc=", - "owner": "rycee", - "repo": "nmt", - "rev": "d83601002c99b78c89ea80e5e6ba21addcfe12ae", - "type": "gitlab" - }, - "original": { - "owner": "rycee", - "repo": "nmt", - "type": "gitlab" - } - }, "nswitch-rcm-nix": { "inputs": { "flake-parts": "flake-parts_3", @@ -9250,36 +7812,17 @@ "type": "github" } }, - "nswitch-rcm-nix_7": { - "inputs": { - "flake-parts": "flake-parts_33", - "nixpkgs": "nixpkgs_53" - }, - "locked": { - "lastModified": 1721304043, - "narHash": "sha256-8mY9tdjo44E23xGMcUFA2a1tUcEpz7oK5upuZZ9v5SU=", - "owner": "Swarsel", - "repo": "nswitch-rcm-nix", - "rev": "b45dc5d673631c97a4b8379926de89a66561d6dc", - "type": "github" - }, - "original": { - "owner": "Swarsel", - "repo": "nswitch-rcm-nix", - "type": "github" - } - }, "nur": { "inputs": { "flake-parts": "flake-parts_4", "nixpkgs": "nixpkgs_6" }, "locked": { - "lastModified": 1760434122, - "narHash": "sha256-PICj8/WLB+WSVv6d09i9n0pY2jobzDLhDijebTmwslQ=", + "lastModified": 1759783224, + "narHash": "sha256-QTsVtR+MhvH6QTFcn31Jubm7qXltInAhTFdtsPifcbA=", "owner": "nix-community", "repo": "NUR", - "rev": "53775ebf6ee76abaa2a4462393ea26b1bbe6f655", + "rev": "9d6e275d4f74ac272aef29fb9845ea7da6559de6", "type": "github" }, "original": { @@ -9305,14 +7848,15 @@ "swarsel", "stylix", "nixpkgs" - ] + ], + "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1751906969, - "narHash": "sha256-BSQAOdPnzdpOuCdAGSJmefSDlqmStFNScEnrWzSqKPw=", + "lastModified": 1748730660, + "narHash": "sha256-5LKmRYKdPuhm8j5GFe3AfrJL8dd8o57BQ34AGjJl1R0=", "owner": "nix-community", "repo": "NUR", - "rev": "ddb679f4131e819efe3bbc6457ba19d7ad116f25", + "rev": "2c0bc52fe14681e9ef60e3553888c4f086e46ecb", "type": "github" }, "original": { @@ -9360,63 +7904,6 @@ "stylix", "nixpkgs" ], - "treefmt-nix": "treefmt-nix" - }, - "locked": { - "lastModified": 1748730660, - "narHash": "sha256-5LKmRYKdPuhm8j5GFe3AfrJL8dd8o57BQ34AGjJl1R0=", - "owner": "nix-community", - "repo": "NUR", - "rev": "2c0bc52fe14681e9ef60e3553888c4f086e46ecb", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "NUR", - "type": "github" - } - }, - "nur_13": { - "inputs": { - "flake-parts": "flake-parts_34", - "nixpkgs": "nixpkgs_54" - }, - "locked": { - "lastModified": 1751906969, - "narHash": "sha256-BSQAOdPnzdpOuCdAGSJmefSDlqmStFNScEnrWzSqKPw=", - "owner": "nix-community", - "repo": "NUR", - "rev": "ddb679f4131e819efe3bbc6457ba19d7ad116f25", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "NUR", - "type": "github" - } - }, - "nur_14": { - "inputs": { - "flake-parts": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "stylix", - "flake-parts" - ], - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "stylix", - "nixpkgs" - ], "treefmt-nix": "treefmt-nix_2" }, "locked": { @@ -9464,11 +7951,11 @@ "nixpkgs": "nixpkgs_14" }, "locked": { - "lastModified": 1759783224, - "narHash": "sha256-QTsVtR+MhvH6QTFcn31Jubm7qXltInAhTFdtsPifcbA=", + "lastModified": 1758706012, + "narHash": "sha256-Gee6jqg2BLBwG6uv/U7xEQRuBobbKJOLIm5/KfpcYq4=", "owner": "nix-community", "repo": "NUR", - "rev": "9d6e275d4f74ac272aef29fb9845ea7da6559de6", + "rev": "8f016c352545dc7d55969e1ab3f1dc2f01cdb3e4", "type": "github" }, "original": { @@ -9491,11 +7978,11 @@ ] }, "locked": { - "lastModified": 1758998580, - "narHash": "sha256-VLx0z396gDCGSiowLMFz5XRO/XuNV+4EnDYjdJhHvUk=", + "lastModified": 1756961635, + "narHash": "sha256-hETvQcILTg5kChjYNns1fD5ELdsYB/VVgVmBtqKQj9A=", "owner": "nix-community", "repo": "NUR", - "rev": "ba8d9c98f5f4630bcb0e815ab456afd90c930728", + "rev": "6ca27b2654ac55e3f6e0ca434c1b4589ae22b370", "type": "github" }, "original": { @@ -9510,11 +7997,11 @@ "nixpkgs": "nixpkgs_22" }, "locked": { - "lastModified": 1758706012, - "narHash": "sha256-Gee6jqg2BLBwG6uv/U7xEQRuBobbKJOLIm5/KfpcYq4=", + "lastModified": 1757935448, + "narHash": "sha256-dIk3hiBlSsHZJViknedzOyTb7VjHFmty6d2P59/DRi4=", "owner": "nix-community", "repo": "NUR", - "rev": "8f016c352545dc7d55969e1ab3f1dc2f01cdb3e4", + "rev": "b8ed69c1bcb6c358bb1df56e2a2e64323f6572c6", "type": "github" }, "original": { @@ -9558,11 +8045,11 @@ "nixpkgs": "nixpkgs_30" }, "locked": { - "lastModified": 1757935448, - "narHash": "sha256-dIk3hiBlSsHZJViknedzOyTb7VjHFmty6d2P59/DRi4=", + "lastModified": 1754726338, + "narHash": "sha256-Zz4zAgAvgXwAzkJuhuoYFpQ9eJs/vtaYCso+rfwahsw=", "owner": "nix-community", "repo": "NUR", - "rev": "b8ed69c1bcb6c358bb1df56e2a2e64323f6572c6", + "rev": "ab1e2e53a418b3907f87c24ce277975438f1bd78", "type": "github" }, "original": { @@ -9589,11 +8076,11 @@ ] }, "locked": { - "lastModified": 1756961635, - "narHash": "sha256-hETvQcILTg5kChjYNns1fD5ELdsYB/VVgVmBtqKQj9A=", + "lastModified": 1751906969, + "narHash": "sha256-BSQAOdPnzdpOuCdAGSJmefSDlqmStFNScEnrWzSqKPw=", "owner": "nix-community", "repo": "NUR", - "rev": "6ca27b2654ac55e3f6e0ca434c1b4589ae22b370", + "rev": "ddb679f4131e819efe3bbc6457ba19d7ad116f25", "type": "github" }, "original": { @@ -9608,11 +8095,11 @@ "nixpkgs": "nixpkgs_38" }, "locked": { - "lastModified": 1754726338, - "narHash": "sha256-Zz4zAgAvgXwAzkJuhuoYFpQ9eJs/vtaYCso+rfwahsw=", + "lastModified": 1751906969, + "narHash": "sha256-BSQAOdPnzdpOuCdAGSJmefSDlqmStFNScEnrWzSqKPw=", "owner": "nix-community", "repo": "NUR", - "rev": "ab1e2e53a418b3907f87c24ce277975438f1bd78", + "rev": "ddb679f4131e819efe3bbc6457ba19d7ad116f25", "type": "github" }, "original": { @@ -9834,47 +8321,9 @@ "type": "github" } }, - "pre-commit-hooks-nix_7": { - "inputs": { - "flake-compat": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "lanzaboote", - "flake-compat" - ], - "gitignore": "gitignore_19", - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "lanzaboote", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1750779888, - "narHash": "sha256-wibppH3g/E2lxU43ZQHC5yA/7kIKLGxVEnsnVK1BtRg=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "16ec914f6fb6f599ce988427d9d94efddf25fe6d", - "type": "github" - }, - "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "type": "github" - } - }, "pre-commit-hooks_10": { "inputs": { - "flake-compat": "flake-compat_18", + "flake-compat": "flake-compat_19", "gitignore": "gitignore_15", "nixpkgs": [ "swarsel", @@ -9885,11 +8334,11 @@ ] }, "locked": { - "lastModified": 1754416808, - "narHash": "sha256-c6yg0EQ9xVESx6HGDOCMcyRSjaTpNJP10ef+6fRcofA=", + "lastModified": 1750779888, + "narHash": "sha256-wibppH3g/E2lxU43ZQHC5yA/7kIKLGxVEnsnVK1BtRg=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "9c52372878df6911f9afc1e2a1391f55e4dfc864", + "rev": "16ec914f6fb6f599ce988427d9d94efddf25fe6d", "type": "github" }, "original": { @@ -9900,7 +8349,7 @@ }, "pre-commit-hooks_11": { "inputs": { - "flake-compat": "flake-compat_21", + "flake-compat": "flake-compat_22", "gitignore": "gitignore_17", "nixpkgs": [ "swarsel", @@ -9937,7 +8386,7 @@ }, "pre-commit-hooks_12": { "inputs": { - "flake-compat": "flake-compat_22", + "flake-compat": "flake-compat_23", "gitignore": "gitignore_18", "nixpkgs": [ "swarsel", @@ -9962,73 +8411,6 @@ "type": "github" } }, - "pre-commit-hooks_13": { - "inputs": { - "flake-compat": "flake-compat_25", - "gitignore": "gitignore_20", - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nix-topology", - "nixpkgs" - ], - "nixpkgs-stable": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nix-topology", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1730797577, - "narHash": "sha256-SrID5yVpyUfknUTGWgYkTyvdr9J1LxUym4om3SVGPkg=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "1864030ed24a2b8b4e4d386a5eeaf0c5369e50a9", - "type": "github" - }, - "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "type": "github" - } - }, - "pre-commit-hooks_14": { - "inputs": { - "flake-compat": "flake-compat_26", - "gitignore": "gitignore_21", - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1750779888, - "narHash": "sha256-wibppH3g/E2lxU43ZQHC5yA/7kIKLGxVEnsnVK1BtRg=", - "owner": "cachix", - "repo": "git-hooks.nix", - "rev": "16ec914f6fb6f599ce988427d9d94efddf25fe6d", - "type": "github" - }, - "original": { - "owner": "cachix", - "repo": "git-hooks.nix", - "type": "github" - } - }, "pre-commit-hooks_2": { "inputs": { "flake-compat": "flake-compat_3", @@ -10038,11 +8420,11 @@ ] }, "locked": { - "lastModified": 1760392170, - "narHash": "sha256-WftxJgr2MeDDFK47fQKywzC72L2jRc/PWcyGdjaDzkw=", + "lastModified": 1759523803, + "narHash": "sha256-PTod9NG+i3XbbnBKMl/e5uHDBYpwIWivQ3gOWSEuIEM=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "46d55f0aeb1d567a78223e69729734f3dca25a85", + "rev": "cfc9f7bb163ad8542029d303e599c0f7eee09835", "type": "github" }, "original": { @@ -10053,7 +8435,7 @@ }, "pre-commit-hooks_3": { "inputs": { - "flake-compat": "flake-compat_5", + "flake-compat": "flake-compat_6", "gitignore": "gitignore_5", "nixpkgs": [ "swarsel", @@ -10082,7 +8464,7 @@ }, "pre-commit-hooks_4": { "inputs": { - "flake-compat": "flake-compat_6", + "flake-compat": "flake-compat_7", "gitignore": "gitignore_6", "nixpkgs": [ "swarsel", @@ -10090,11 +8472,11 @@ ] }, "locked": { - "lastModified": 1759523803, - "narHash": "sha256-PTod9NG+i3XbbnBKMl/e5uHDBYpwIWivQ3gOWSEuIEM=", + "lastModified": 1758108966, + "narHash": "sha256-ytw7ROXaWZ7OfwHrQ9xvjpUWeGVm86pwnEd1QhzawIo=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "cfc9f7bb163ad8542029d303e599c0f7eee09835", + "rev": "54df955a695a84cd47d4a43e08e1feaf90b1fd9b", "type": "github" }, "original": { @@ -10105,7 +8487,7 @@ }, "pre-commit-hooks_5": { "inputs": { - "flake-compat": "flake-compat_9", + "flake-compat": "flake-compat_10", "gitignore": "gitignore_8", "nixpkgs": [ "swarsel", @@ -10136,7 +8518,7 @@ }, "pre-commit-hooks_6": { "inputs": { - "flake-compat": "flake-compat_10", + "flake-compat": "flake-compat_11", "gitignore": "gitignore_9", "nixpkgs": [ "swarsel", @@ -10145,11 +8527,11 @@ ] }, "locked": { - "lastModified": 1758108966, - "narHash": "sha256-ytw7ROXaWZ7OfwHrQ9xvjpUWeGVm86pwnEd1QhzawIo=", + "lastModified": 1757588530, + "narHash": "sha256-tJ7A8mID3ct69n9WCvZ3PzIIl3rXTdptn/lZmqSS95U=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "54df955a695a84cd47d4a43e08e1feaf90b1fd9b", + "rev": "b084b2c2b6bc23e83bbfe583b03664eb0b18c411", "type": "github" }, "original": { @@ -10160,7 +8542,7 @@ }, "pre-commit-hooks_7": { "inputs": { - "flake-compat": "flake-compat_13", + "flake-compat": "flake-compat_14", "gitignore": "gitignore_11", "nixpkgs": [ "swarsel", @@ -10193,7 +8575,7 @@ }, "pre-commit-hooks_8": { "inputs": { - "flake-compat": "flake-compat_14", + "flake-compat": "flake-compat_15", "gitignore": "gitignore_12", "nixpkgs": [ "swarsel", @@ -10203,11 +8585,11 @@ ] }, "locked": { - "lastModified": 1757588530, - "narHash": "sha256-tJ7A8mID3ct69n9WCvZ3PzIIl3rXTdptn/lZmqSS95U=", + "lastModified": 1754416808, + "narHash": "sha256-c6yg0EQ9xVESx6HGDOCMcyRSjaTpNJP10ef+6fRcofA=", "owner": "cachix", "repo": "git-hooks.nix", - "rev": "b084b2c2b6bc23e83bbfe583b03664eb0b18c411", + "rev": "9c52372878df6911f9afc1e2a1391f55e4dfc864", "type": "github" }, "original": { @@ -10218,7 +8600,7 @@ }, "pre-commit-hooks_9": { "inputs": { - "flake-compat": "flake-compat_17", + "flake-compat": "flake-compat_18", "gitignore": "gitignore_14", "nixpkgs": [ "swarsel", @@ -10282,11 +8664,11 @@ "spicetify-nix": "spicetify-nix", "stylix": "stylix", "swarsel": "swarsel", - "swarsel-modules": "swarsel-modules_5", - "swarsel-nix": "swarsel-nix_2", - "systems": "systems_54", - "vbc-nix": "vbc-nix_7", - "zjstatus": "zjstatus_7" + "swarsel-modules": "swarsel-modules_4", + "swarsel-nix": "swarsel-nix", + "systems": "systems_44", + "vbc-nix": "vbc-nix_6", + "zjstatus": "zjstatus_6" } }, "rust-overlay": { @@ -10313,8 +8695,6 @@ "rust-overlay_10": { "inputs": { "nixpkgs": [ - "swarsel", - "swarsel", "swarsel", "swarsel", "zjstatus", @@ -10322,11 +8702,11 @@ ] }, "locked": { - "lastModified": 1750905536, - "narHash": "sha256-Mo7yXM5IvMGNvJPiNkFsVT2UERmnvjsKgnY6UyDdySQ=", + "lastModified": 1754880555, + "narHash": "sha256-tG6l0wiX8V8IvG4HFYY8IYN5vpNAxQ+UWunjjpE6SqU=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "2fa7c0aabd15fa0ccc1dc7e675a4fcf0272ad9a1", + "rev": "17c591a44e4eb77f05f27cd37e1cfc3f219c7fc4", "type": "github" }, "original": { @@ -10338,8 +8718,6 @@ "rust-overlay_11": { "inputs": { "nixpkgs": [ - "swarsel", - "swarsel", "swarsel", "zjstatus", "nixpkgs" @@ -10360,51 +8738,6 @@ } }, "rust-overlay_12": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "zjstatus", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1754880555, - "narHash": "sha256-tG6l0wiX8V8IvG4HFYY8IYN5vpNAxQ+UWunjjpE6SqU=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "17c591a44e4eb77f05f27cd37e1cfc3f219c7fc4", - "type": "github" - }, - "original": { - "owner": "oxalica", - "repo": "rust-overlay", - "type": "github" - } - }, - "rust-overlay_13": { - "inputs": { - "nixpkgs": [ - "swarsel", - "zjstatus", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1754880555, - "narHash": "sha256-tG6l0wiX8V8IvG4HFYY8IYN5vpNAxQ+UWunjjpE6SqU=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "17c591a44e4eb77f05f27cd37e1cfc3f219c7fc4", - "type": "github" - }, - "original": { - "owner": "oxalica", - "repo": "rust-overlay", - "type": "github" - } - }, - "rust-overlay_14": { "inputs": { "nixpkgs": [ "zjstatus", @@ -10506,11 +8839,11 @@ ] }, "locked": { - "lastModified": 1754189623, - "narHash": "sha256-fstu5eb30UYwsxow0aQqkzxNxGn80UZjyehQVNVHuBk=", + "lastModified": 1751165203, + "narHash": "sha256-3QhlpAk2yn+ExwvRLtaixWsVW1q3OX3KXXe0l8VMLl4=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "c582ff7f0d8a7ea689ae836dfb1773f1814f472a", + "rev": "90f547b90e73d3c6025e66c5b742d6db51c418c3", "type": "github" }, "original": { @@ -10553,17 +8886,16 @@ "swarsel", "swarsel", "swarsel", - "swarsel", - "lanzaboote", + "zjstatus", "nixpkgs" ] }, "locked": { - "lastModified": 1751165203, - "narHash": "sha256-3QhlpAk2yn+ExwvRLtaixWsVW1q3OX3KXXe0l8VMLl4=", + "lastModified": 1750905536, + "narHash": "sha256-Mo7yXM5IvMGNvJPiNkFsVT2UERmnvjsKgnY6UyDdySQ=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "90f547b90e73d3c6025e66c5b742d6db51c418c3", + "rev": "2fa7c0aabd15fa0ccc1dc7e675a4fcf0272ad9a1", "type": "github" }, "original": { @@ -10579,8 +8911,6 @@ "swarsel", "swarsel", "swarsel", - "swarsel", - "swarsel", "zjstatus", "nixpkgs" ] @@ -10602,8 +8932,6 @@ "rust-overlay_9": { "inputs": { "nixpkgs": [ - "swarsel", - "swarsel", "swarsel", "swarsel", "swarsel", @@ -10721,44 +9049,10 @@ "type": "github" } }, - "scss-reset_7": { - "flake": false, - "locked": { - "lastModified": 1631450058, - "narHash": "sha256-muDlZJPtXDIGevSEWkicPP0HQ6VtucbkMNygpGlBEUM=", - "owner": "andreymatin", - "repo": "scss-reset", - "rev": "0cf50e27a4e95e9bb5b1715eedf9c54dee1a5a91", - "type": "github" - }, - "original": { - "owner": "andreymatin", - "repo": "scss-reset", - "type": "github" - } - }, "sops-nix": { "inputs": { "nixpkgs": "nixpkgs_7" }, - "locked": { - "lastModified": 1760393368, - "narHash": "sha256-8mN3kqyqa2PKY0wwZ2UmMEYMcxvNTwLaOrrDsw6Qi4E=", - "owner": "Mic92", - "repo": "sops-nix", - "rev": "ab8d56e85b8be14cff9d93735951e30c3e86a437", - "type": "github" - }, - "original": { - "owner": "Mic92", - "repo": "sops-nix", - "type": "github" - } - }, - "sops-nix_2": { - "inputs": { - "nixpkgs": "nixpkgs_15" - }, "locked": { "lastModified": 1759635238, "narHash": "sha256-UvzKi02LMFP74csFfwLPAZ0mrE7k6EiYaKecplyX9Qk=", @@ -10773,9 +9067,9 @@ "type": "github" } }, - "sops-nix_3": { + "sops-nix_2": { "inputs": { - "nixpkgs": "nixpkgs_23" + "nixpkgs": "nixpkgs_15" }, "locked": { "lastModified": 1758425756, @@ -10791,9 +9085,9 @@ "type": "github" } }, - "sops-nix_4": { + "sops-nix_3": { "inputs": { - "nixpkgs": "nixpkgs_31" + "nixpkgs": "nixpkgs_23" }, "locked": { "lastModified": 1757847158, @@ -10809,9 +9103,9 @@ "type": "github" } }, - "sops-nix_5": { + "sops-nix_4": { "inputs": { - "nixpkgs": "nixpkgs_39" + "nixpkgs": "nixpkgs_31" }, "locked": { "lastModified": 1754328224, @@ -10827,9 +9121,9 @@ "type": "github" } }, - "sops-nix_6": { + "sops-nix_5": { "inputs": { - "nixpkgs": "nixpkgs_47" + "nixpkgs": "nixpkgs_39" }, "locked": { "lastModified": 1751606940, @@ -10845,9 +9139,9 @@ "type": "github" } }, - "sops-nix_7": { + "sops-nix_6": { "inputs": { - "nixpkgs": "nixpkgs_55" + "nixpkgs": "nixpkgs_47" }, "locked": { "lastModified": 1751606940, @@ -10879,22 +9173,6 @@ "url": "https://spectrum-os.org/git/spectrum" } }, - "spectrum_2": { - "flake": false, - "locked": { - "lastModified": 1759482047, - "narHash": "sha256-H1wiXRQHxxPyMMlP39ce3ROKCwI5/tUn36P8x6dFiiQ=", - "ref": "refs/heads/main", - "rev": "c5d5786d3dc938af0b279c542d1e43bce381b4b9", - "revCount": 996, - "type": "git", - "url": "https://spectrum-os.org/git/spectrum" - }, - "original": { - "type": "git", - "url": "https://spectrum-os.org/git/spectrum" - } - }, "spicetify-nix": { "inputs": { "nixpkgs": [ @@ -10902,28 +9180,6 @@ ], "systems": "systems_4" }, - "locked": { - "lastModified": 1760243311, - "narHash": "sha256-LNrok211+WWlMGWqpGPpnGcnWhyo5SfvMv62uDiLzoI=", - "owner": "Gerg-l", - "repo": "spicetify-nix", - "rev": "93f1d45e48191a0b24c5c15e5cf369566ff75be9", - "type": "github" - }, - "original": { - "owner": "Gerg-l", - "repo": "spicetify-nix", - "type": "github" - } - }, - "spicetify-nix_2": { - "inputs": { - "nixpkgs": [ - "swarsel", - "nixpkgs" - ], - "systems": "systems_9" - }, "locked": { "lastModified": 1759638324, "narHash": "sha256-bj0L3n2UWE/DjqFjsydWsSzO74+dqUA4tiOX4At6LbM=", @@ -10938,14 +9194,13 @@ "type": "github" } }, - "spicetify-nix_3": { + "spicetify-nix_2": { "inputs": { "nixpkgs": [ - "swarsel", "swarsel", "nixpkgs" ], - "systems": "systems_13" + "systems": "systems_8" }, "locked": { "lastModified": 1758584568, @@ -10961,6 +9216,29 @@ "type": "github" } }, + "spicetify-nix_3": { + "inputs": { + "nixpkgs": [ + "swarsel", + "swarsel", + "nixpkgs" + ], + "systems": "systems_12" + }, + "locked": { + "lastModified": 1757824114, + "narHash": "sha256-cyVbc8UxyWKAuXOgqLggil2mXLZWY0wyfBWYqUwgYjM=", + "owner": "Gerg-l", + "repo": "spicetify-nix", + "rev": "d23584b2000b7f7a59a1764ff9ab93b89444bfd9", + "type": "github" + }, + "original": { + "owner": "Gerg-l", + "repo": "spicetify-nix", + "type": "github" + } + }, "spicetify-nix_4": { "inputs": { "nixpkgs": [ @@ -10969,32 +9247,7 @@ "swarsel", "nixpkgs" ], - "systems": "systems_17" - }, - "locked": { - "lastModified": 1757824114, - "narHash": "sha256-cyVbc8UxyWKAuXOgqLggil2mXLZWY0wyfBWYqUwgYjM=", - "owner": "Gerg-l", - "repo": "spicetify-nix", - "rev": "d23584b2000b7f7a59a1764ff9ab93b89444bfd9", - "type": "github" - }, - "original": { - "owner": "Gerg-l", - "repo": "spicetify-nix", - "type": "github" - } - }, - "spicetify-nix_5": { - "inputs": { - "nixpkgs": [ - "swarsel", - "swarsel", - "swarsel", - "swarsel", - "nixpkgs" - ], - "systems": "systems_21" + "systems": "systems_16" }, "locked": { "lastModified": 1754196919, @@ -11029,11 +9282,11 @@ "tinted-zed": "tinted-zed" }, "locked": { - "lastModified": 1760350849, - "narHash": "sha256-JqcM5Pkm5q1c9D5zpINJsN1yCB4Vq1cL12ZuFyo32T4=", + "lastModified": 1759690047, + "narHash": "sha256-Vlpa0d1xOgPO9waHwxJNi6LcD2PYqB3EjwLRtSxXlHc=", "owner": "danth", "repo": "stylix", - "rev": "7b4957d716f4fb615bf0e37d3b23c112579b1408", + "rev": "09022804b2bcd217f3a41a644d26b23d30375d12", "type": "github" }, "original": { @@ -11053,7 +9306,7 @@ "gnome-shell": "gnome-shell_2", "nixpkgs": "nixpkgs_16", "nur": "nur_4", - "systems": "systems_10", + "systems": "systems_9", "tinted-foot": "tinted-foot_2", "tinted-kitty": "tinted-kitty_2", "tinted-schemes": "tinted-schemes_2", @@ -11061,11 +9314,11 @@ "tinted-zed": "tinted-zed_2" }, "locked": { - "lastModified": 1759690047, - "narHash": "sha256-Vlpa0d1xOgPO9waHwxJNi6LcD2PYqB3EjwLRtSxXlHc=", + "lastModified": 1758698745, + "narHash": "sha256-IonbUp7KTYzXS1UGraXPAa7QJFgLJrAZGswE5CfUILU=", "owner": "danth", "repo": "stylix", - "rev": "09022804b2bcd217f3a41a644d26b23d30375d12", + "rev": "799c811ac53ef9820dd007b6ddf33390964c6bef", "type": "github" }, "original": { @@ -11085,7 +9338,7 @@ "gnome-shell": "gnome-shell_3", "nixpkgs": "nixpkgs_24", "nur": "nur_6", - "systems": "systems_14", + "systems": "systems_13", "tinted-foot": "tinted-foot_3", "tinted-kitty": "tinted-kitty_3", "tinted-schemes": "tinted-schemes_3", @@ -11093,11 +9346,11 @@ "tinted-zed": "tinted-zed_3" }, "locked": { - "lastModified": 1758698745, - "narHash": "sha256-IonbUp7KTYzXS1UGraXPAa7QJFgLJrAZGswE5CfUILU=", + "lastModified": 1757360005, + "narHash": "sha256-VwzdFEQCpYMU9mc7BSQGQe5wA1MuTYPJnRc9TQCTMcM=", "owner": "danth", "repo": "stylix", - "rev": "799c811ac53ef9820dd007b6ddf33390964c6bef", + "rev": "834a743c11d66ea18e8c54872fbcc72ce48bc57f", "type": "github" }, "original": { @@ -11117,7 +9370,7 @@ "gnome-shell": "gnome-shell_4", "nixpkgs": "nixpkgs_32", "nur": "nur_8", - "systems": "systems_18", + "systems": "systems_17", "tinted-foot": "tinted-foot_4", "tinted-kitty": "tinted-kitty_4", "tinted-schemes": "tinted-schemes_4", @@ -11125,11 +9378,11 @@ "tinted-zed": "tinted-zed_4" }, "locked": { - "lastModified": 1757360005, - "narHash": "sha256-VwzdFEQCpYMU9mc7BSQGQe5wA1MuTYPJnRc9TQCTMcM=", + "lastModified": 1754597531, + "narHash": "sha256-OpC9/PBIuL2WEJUkcuD/wVxI8r+3o6f5RylSIefjHo4=", "owner": "danth", "repo": "stylix", - "rev": "834a743c11d66ea18e8c54872fbcc72ce48bc57f", + "rev": "63bb34a66ad7d1af2e95ee20dd675896b2074c32", "type": "github" }, "original": { @@ -11149,7 +9402,7 @@ "gnome-shell": "gnome-shell_5", "nixpkgs": "nixpkgs_40", "nur": "nur_10", - "systems": "systems_22", + "systems": "systems_20", "tinted-foot": "tinted-foot_5", "tinted-kitty": "tinted-kitty_5", "tinted-schemes": "tinted-schemes_5", @@ -11157,11 +9410,11 @@ "tinted-zed": "tinted-zed_5" }, "locked": { - "lastModified": 1754597531, - "narHash": "sha256-OpC9/PBIuL2WEJUkcuD/wVxI8r+3o6f5RylSIefjHo4=", + "lastModified": 1751906932, + "narHash": "sha256-vRZH3bq24I/heef0AIFnaBmDGdQSpTmyjT4vtpa7qqk=", "owner": "danth", "repo": "stylix", - "rev": "63bb34a66ad7d1af2e95ee20dd675896b2074c32", + "rev": "c538d1a3571386eaaca31aef7bb5fd5c155327b0", "type": "github" }, "original": { @@ -11181,7 +9434,7 @@ "gnome-shell": "gnome-shell_6", "nixpkgs": "nixpkgs_48", "nur": "nur_12", - "systems": "systems_25", + "systems": "systems_23", "tinted-foot": "tinted-foot_6", "tinted-kitty": "tinted-kitty_6", "tinted-schemes": "tinted-schemes_6", @@ -11202,48 +9455,16 @@ "type": "github" } }, - "stylix_7": { - "inputs": { - "base16": "base16_7", - "base16-fish": "base16-fish_7", - "base16-helix": "base16-helix_7", - "base16-vim": "base16-vim_7", - "firefox-gnome-theme": "firefox-gnome-theme_7", - "flake-parts": "flake-parts_35", - "gnome-shell": "gnome-shell_7", - "nixpkgs": "nixpkgs_56", - "nur": "nur_14", - "systems": "systems_28", - "tinted-foot": "tinted-foot_7", - "tinted-kitty": "tinted-kitty_7", - "tinted-schemes": "tinted-schemes_7", - "tinted-tmux": "tinted-tmux_7", - "tinted-zed": "tinted-zed_7" - }, - "locked": { - "lastModified": 1751906932, - "narHash": "sha256-vRZH3bq24I/heef0AIFnaBmDGdQSpTmyjT4vtpa7qqk=", - "owner": "danth", - "repo": "stylix", - "rev": "c538d1a3571386eaaca31aef7bb5fd5c155327b0", - "type": "github" - }, - "original": { - "owner": "danth", - "repo": "stylix", - "type": "github" - } - }, "swarsel": { "inputs": { "devshell": "devshell_3", "disko": "disko_2", "emacs-overlay": "emacs-overlay_2", "flake-parts": "flake-parts_6", + "fw-fanctrl": "fw-fanctrl", "home-manager": "home-manager_3", "impermanence": "impermanence_2", "lanzaboote": "lanzaboote_2", - "microvm": "microvm_2", "niri-flake": "niri-flake_2", "nix-darwin": "nix-darwin_2", "nix-index-database": "nix-index-database_2", @@ -11265,18 +9486,17 @@ "spicetify-nix": "spicetify-nix_2", "stylix": "stylix_2", "swarsel": "swarsel_2", - "swarsel-modules": "swarsel-modules_4", - "swarsel-nix": "swarsel-nix", - "systems": "systems_49", - "vbc-nix": "vbc-nix_6", - "zjstatus": "zjstatus_6" + "swarsel-modules": "swarsel-modules_3", + "systems": "systems_39", + "vbc-nix": "vbc-nix_5", + "zjstatus": "zjstatus_5" }, "locked": { - "lastModified": 1760219467, - "narHash": "sha256-DcbzT2+6RElOsaaToQAoYnHLEBqFm0pomLaOhgxyHZ4=", + "lastModified": 1758869406, + "narHash": "sha256-TulduD1ANpUvR9WNm3Hci+crvfTETd0Y3RevczQR8SQ=", "owner": "Swarsel", "repo": ".dotfiles", - "rev": "95fa226b9e70df2b7f78cdd630583c842a38e822", + "rev": "a896d5eb5db719b7539825d355ab1bb8ec563b4b", "type": "github" }, "original": { @@ -11287,9 +9507,9 @@ }, "swarsel-modules": { "inputs": { - "flake-parts": "flake-parts_36", - "nixpkgs": "nixpkgs_59", - "systems": "systems_35" + "flake-parts": "flake-parts_31", + "nixpkgs": "nixpkgs_51", + "systems": "systems_30" }, "locked": { "lastModified": 1756088962, @@ -11308,9 +9528,9 @@ }, "swarsel-modules_2": { "inputs": { - "flake-parts": "flake-parts_37", - "nixpkgs": "nixpkgs_61", - "systems": "systems_39" + "flake-parts": "flake-parts_32", + "nixpkgs": "nixpkgs_53", + "systems": "systems_34" }, "locked": { "lastModified": 1756090249, @@ -11329,9 +9549,9 @@ }, "swarsel-modules_3": { "inputs": { - "flake-parts": "flake-parts_38", - "nixpkgs": "nixpkgs_63", - "systems": "systems_43" + "flake-parts": "flake-parts_33", + "nixpkgs": "nixpkgs_55", + "systems": "systems_38" }, "locked": { "lastModified": 1757950182, @@ -11350,30 +9570,9 @@ }, "swarsel-modules_4": { "inputs": { - "flake-parts": "flake-parts_39", - "nixpkgs": "nixpkgs_65", - "systems": "systems_47" - }, - "locked": { - "lastModified": 1757950182, - "narHash": "sha256-+dfxuorjUbaTvn+GNJMyCTbJjUVkkGTEIIaWpK2lGWM=", - "owner": "Swarsel", - "repo": "swarsel-modules", - "rev": "161c215217c9d6037658b00eebca9d420a44a733", - "type": "github" - }, - "original": { - "owner": "Swarsel", - "ref": "main", - "repo": "swarsel-modules", - "type": "github" - } - }, - "swarsel-modules_5": { - "inputs": { - "flake-parts": "flake-parts_41", - "nixpkgs": "nixpkgs_68", - "systems": "systems_52" + "flake-parts": "flake-parts_34", + "nixpkgs": "nixpkgs_57", + "systems": "systems_42" }, "locked": { "lastModified": 1757950182, @@ -11392,30 +9591,9 @@ }, "swarsel-nix": { "inputs": { - "flake-parts": "flake-parts_40", - "nixpkgs": "nixpkgs_66", - "systems": "systems_48" - }, - "locked": { - "lastModified": 1760190732, - "narHash": "sha256-Bxn/5+MCKOzR9LgUyHDhxCU3eejxz+hfsAT9Sqqz6B0=", - "owner": "Swarsel", - "repo": "swarsel-nix", - "rev": "f0ab1f68c94d777aa7d0a8f23745cb9aa8172fd4", - "type": "github" - }, - "original": { - "owner": "Swarsel", - "ref": "main", - "repo": "swarsel-nix", - "type": "github" - } - }, - "swarsel-nix_2": { - "inputs": { - "flake-parts": "flake-parts_42", - "nixpkgs": "nixpkgs_69", - "systems": "systems_53" + "flake-parts": "flake-parts_35", + "nixpkgs": "nixpkgs_58", + "systems": "systems_43" }, "locked": { "lastModified": 1760190732, @@ -11438,7 +9616,7 @@ "disko": "disko_3", "emacs-overlay": "emacs-overlay_3", "flake-parts": "flake-parts_11", - "fw-fanctrl": "fw-fanctrl", + "fw-fanctrl": "fw-fanctrl_2", "home-manager": "home-manager_5", "impermanence": "impermanence_3", "lanzaboote": "lanzaboote_3", @@ -11463,17 +9641,17 @@ "spicetify-nix": "spicetify-nix_3", "stylix": "stylix_3", "swarsel": "swarsel_3", - "swarsel-modules": "swarsel-modules_3", - "systems": "systems_44", - "vbc-nix": "vbc-nix_5", - "zjstatus": "zjstatus_5" + "swarsel-modules": "swarsel-modules_2", + "systems": "systems_35", + "vbc-nix": "vbc-nix_4", + "zjstatus": "zjstatus_4" }, "locked": { - "lastModified": 1758869406, - "narHash": "sha256-TulduD1ANpUvR9WNm3Hci+crvfTETd0Y3RevczQR8SQ=", + "lastModified": 1758712194, + "narHash": "sha256-ySYaSpCWBd0tlhnuJJY9XqcUNGXrACGMXVhTiigThhg=", "owner": "Swarsel", "repo": ".dotfiles", - "rev": "a896d5eb5db719b7539825d355ab1bb8ec563b4b", + "rev": "355cf03bd13a9325bb8ef10912900fe3623771ac", "type": "github" }, "original": { @@ -11488,7 +9666,7 @@ "disko": "disko_4", "emacs-overlay": "emacs-overlay_4", "flake-parts": "flake-parts_16", - "fw-fanctrl": "fw-fanctrl_2", + "fw-fanctrl": "fw-fanctrl_3", "home-manager": "home-manager_7", "impermanence": "impermanence_4", "lanzaboote": "lanzaboote_4", @@ -11513,58 +9691,8 @@ "spicetify-nix": "spicetify-nix_4", "stylix": "stylix_4", "swarsel": "swarsel_4", - "swarsel-modules": "swarsel-modules_2", - "systems": "systems_40", - "vbc-nix": "vbc-nix_4", - "zjstatus": "zjstatus_4" - }, - "locked": { - "lastModified": 1758712194, - "narHash": "sha256-ySYaSpCWBd0tlhnuJJY9XqcUNGXrACGMXVhTiigThhg=", - "owner": "Swarsel", - "repo": ".dotfiles", - "rev": "355cf03bd13a9325bb8ef10912900fe3623771ac", - "type": "github" - }, - "original": { - "owner": "Swarsel", - "repo": ".dotfiles", - "type": "github" - } - }, - "swarsel_4": { - "inputs": { - "devshell": "devshell_9", - "disko": "disko_5", - "emacs-overlay": "emacs-overlay_5", - "flake-parts": "flake-parts_21", - "fw-fanctrl": "fw-fanctrl_3", - "home-manager": "home-manager_9", - "impermanence": "impermanence_5", - "lanzaboote": "lanzaboote_5", - "niri-flake": "niri-flake_5", - "nix-darwin": "nix-darwin_5", - "nix-index-database": "nix-index-database_5", - "nix-on-droid": "nix-on-droid_5", - "nix-topology": "nix-topology_5", - "nixgl": "nixgl_5", - "nixos-generators": "nixos-generators_5", - "nixos-hardware": "nixos-hardware_5", - "nixpkgs": "nixpkgs_36", - "nixpkgs-dev": "nixpkgs-dev_5", - "nixpkgs-kernel": "nixpkgs-kernel_5", - "nixpkgs-stable": "nixpkgs-stable_15", - "nixpkgs-stable24_05": "nixpkgs-stable24_05_5", - "nixpkgs-stable24_11": "nixpkgs-stable24_11_5", - "nswitch-rcm-nix": "nswitch-rcm-nix_5", - "nur": "nur_9", - "pre-commit-hooks": "pre-commit-hooks_10", - "sops-nix": "sops-nix_5", - "spicetify-nix": "spicetify-nix_5", - "stylix": "stylix_5", - "swarsel": "swarsel_5", "swarsel-modules": "swarsel-modules", - "systems": "systems_36", + "systems": "systems_31", "vbc-nix": "vbc-nix_3", "zjstatus": "zjstatus_3" }, @@ -11582,36 +9710,36 @@ "type": "github" } }, - "swarsel_5": { + "swarsel_4": { "inputs": { - "devshell": "devshell_11", - "disko": "disko_6", - "emacs-overlay": "emacs-overlay_6", - "flake-parts": "flake-parts_26", + "devshell": "devshell_9", + "disko": "disko_5", + "emacs-overlay": "emacs-overlay_5", + "flake-parts": "flake-parts_21", "fw-fanctrl": "fw-fanctrl_4", - "home-manager": "home-manager_11", - "impermanence": "impermanence_6", - "lanzaboote": "lanzaboote_6", - "nix-darwin": "nix-darwin_6", - "nix-index-database": "nix-index-database_6", - "nix-on-droid": "nix-on-droid_6", - "nix-topology": "nix-topology_6", - "nixgl": "nixgl_6", - "nixos-generators": "nixos-generators_6", - "nixos-hardware": "nixos-hardware_6", - "nixpkgs": "nixpkgs_44", - "nixpkgs-dev": "nixpkgs-dev_6", - "nixpkgs-kernel": "nixpkgs-kernel_6", - "nixpkgs-stable": "nixpkgs-stable_17", - "nixpkgs-stable24_05": "nixpkgs-stable24_05_6", - "nixpkgs-stable24_11": "nixpkgs-stable24_11_6", - "nswitch-rcm-nix": "nswitch-rcm-nix_6", - "nur": "nur_11", - "pre-commit-hooks": "pre-commit-hooks_12", - "sops-nix": "sops-nix_6", - "stylix": "stylix_6", - "swarsel": "swarsel_6", - "systems": "systems_32", + "home-manager": "home-manager_9", + "impermanence": "impermanence_5", + "lanzaboote": "lanzaboote_5", + "nix-darwin": "nix-darwin_5", + "nix-index-database": "nix-index-database_5", + "nix-on-droid": "nix-on-droid_5", + "nix-topology": "nix-topology_5", + "nixgl": "nixgl_5", + "nixos-generators": "nixos-generators_5", + "nixos-hardware": "nixos-hardware_5", + "nixpkgs": "nixpkgs_36", + "nixpkgs-dev": "nixpkgs-dev_5", + "nixpkgs-kernel": "nixpkgs-kernel_5", + "nixpkgs-stable": "nixpkgs-stable_14", + "nixpkgs-stable24_05": "nixpkgs-stable24_05_5", + "nixpkgs-stable24_11": "nixpkgs-stable24_11_5", + "nswitch-rcm-nix": "nswitch-rcm-nix_5", + "nur": "nur_9", + "pre-commit-hooks": "pre-commit-hooks_10", + "sops-nix": "sops-nix_5", + "stylix": "stylix_5", + "swarsel": "swarsel_5", + "systems": "systems_27", "vbc-nix": "vbc-nix_2", "zjstatus": "zjstatus_2" }, @@ -11629,35 +9757,35 @@ "type": "github" } }, - "swarsel_6": { + "swarsel_5": { "inputs": { - "devshell": "devshell_13", - "disko": "disko_7", - "emacs-overlay": "emacs-overlay_7", - "flake-parts": "flake-parts_31", + "devshell": "devshell_11", + "disko": "disko_6", + "emacs-overlay": "emacs-overlay_6", + "flake-parts": "flake-parts_26", "fw-fanctrl": "fw-fanctrl_5", - "home-manager": "home-manager_13", - "impermanence": "impermanence_7", - "lanzaboote": "lanzaboote_7", - "nix-darwin": "nix-darwin_7", - "nix-index-database": "nix-index-database_7", - "nix-on-droid": "nix-on-droid_7", - "nix-topology": "nix-topology_7", - "nixgl": "nixgl_7", - "nixos-generators": "nixos-generators_7", - "nixos-hardware": "nixos-hardware_7", - "nixpkgs": "nixpkgs_52", - "nixpkgs-dev": "nixpkgs-dev_7", - "nixpkgs-kernel": "nixpkgs-kernel_7", - "nixpkgs-stable": "nixpkgs-stable_19", - "nixpkgs-stable24_05": "nixpkgs-stable24_05_7", - "nixpkgs-stable24_11": "nixpkgs-stable24_11_7", - "nswitch-rcm-nix": "nswitch-rcm-nix_7", - "nur": "nur_13", - "pre-commit-hooks": "pre-commit-hooks_14", - "sops-nix": "sops-nix_7", - "stylix": "stylix_7", - "systems": "systems_29", + "home-manager": "home-manager_11", + "impermanence": "impermanence_6", + "lanzaboote": "lanzaboote_6", + "nix-darwin": "nix-darwin_6", + "nix-index-database": "nix-index-database_6", + "nix-on-droid": "nix-on-droid_6", + "nix-topology": "nix-topology_6", + "nixgl": "nixgl_6", + "nixos-generators": "nixos-generators_6", + "nixos-hardware": "nixos-hardware_6", + "nixpkgs": "nixpkgs_44", + "nixpkgs-dev": "nixpkgs-dev_6", + "nixpkgs-kernel": "nixpkgs-kernel_6", + "nixpkgs-stable": "nixpkgs-stable_16", + "nixpkgs-stable24_05": "nixpkgs-stable24_05_6", + "nixpkgs-stable24_11": "nixpkgs-stable24_11_6", + "nswitch-rcm-nix": "nswitch-rcm-nix_6", + "nur": "nur_11", + "pre-commit-hooks": "pre-commit-hooks_12", + "sops-nix": "sops-nix_6", + "stylix": "stylix_6", + "systems": "systems_24", "vbc-nix": "vbc-nix", "zjstatus": "zjstatus" }, @@ -11932,16 +10060,16 @@ }, "systems_25": { "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "lastModified": 1689347949, + "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "repo": "default-linux", + "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", "type": "github" }, "original": { "owner": "nix-systems", - "repo": "default", + "repo": "default-linux", "type": "github" } }, @@ -11977,16 +10105,16 @@ }, "systems_28": { "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "lastModified": 1689347949, + "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "repo": "default-linux", + "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", "type": "github" }, "original": { "owner": "nix-systems", - "repo": "default", + "repo": "default-linux", "type": "github" } }, @@ -12022,16 +10150,16 @@ }, "systems_30": { "locked": { - "lastModified": 1689347949, - "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", "owner": "nix-systems", - "repo": "default-linux", - "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { "owner": "nix-systems", - "repo": "default-linux", + "repo": "default", "type": "github" } }, @@ -12051,21 +10179,6 @@ } }, "systems_32": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_33": { "locked": { "lastModified": 1689347949, "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", @@ -12080,6 +10193,21 @@ "type": "github" } }, + "systems_33": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, "systems_34": { "locked": { "lastModified": 1681028828, @@ -12111,21 +10239,6 @@ } }, "systems_36": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_37": { "locked": { "lastModified": 1689347949, "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", @@ -12140,6 +10253,21 @@ "type": "github" } }, + "systems_37": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, "systems_38": { "locked": { "lastModified": 1681028828, @@ -12186,21 +10314,6 @@ } }, "systems_40": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_41": { "locked": { "lastModified": 1689347949, "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", @@ -12215,6 +10328,21 @@ "type": "github" } }, + "systems_41": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, "systems_42": { "locked": { "lastModified": 1681028828, @@ -12290,51 +10418,6 @@ "type": "github" } }, - "systems_47": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_48": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_49": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, "systems_5": { "locked": { "lastModified": 1681028828, @@ -12350,111 +10433,6 @@ "type": "github" } }, - "systems_50": { - "locked": { - "lastModified": 1689347949, - "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", - "owner": "nix-systems", - "repo": "default-linux", - "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default-linux", - "type": "github" - } - }, - "systems_51": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_52": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_53": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_54": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, - "systems_55": { - "locked": { - "lastModified": 1689347949, - "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", - "owner": "nix-systems", - "repo": "default-linux", - "rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default-linux", - "type": "github" - } - }, - "systems_56": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - }, "systems_6": { "locked": { "lastModified": 1681028828, @@ -12617,23 +10595,6 @@ "type": "github" } }, - "tinted-foot_7": { - "flake": false, - "locked": { - "lastModified": 1726913040, - "narHash": "sha256-+eDZPkw7efMNUf3/Pv0EmsidqdwNJ1TaOum6k7lngDQ=", - "owner": "tinted-theming", - "repo": "tinted-foot", - "rev": "fd1b924b6c45c3e4465e8a849e67ea82933fcbe4", - "type": "github" - }, - "original": { - "owner": "tinted-theming", - "repo": "tinted-foot", - "rev": "fd1b924b6c45c3e4465e8a849e67ea82933fcbe4", - "type": "github" - } - }, "tinted-kitty": { "flake": false, "locked": { @@ -12730,22 +10691,6 @@ "type": "github" } }, - "tinted-kitty_7": { - "flake": false, - "locked": { - "lastModified": 1735730497, - "narHash": "sha256-4KtB+FiUzIeK/4aHCKce3V9HwRvYaxX+F1edUrfgzb8=", - "owner": "tinted-theming", - "repo": "tinted-kitty", - "rev": "de6f888497f2c6b2279361bfc790f164bfd0f3fa", - "type": "github" - }, - "original": { - "owner": "tinted-theming", - "repo": "tinted-kitty", - "type": "github" - } - }, "tinted-schemes": { "flake": false, "locked": { @@ -12765,11 +10710,11 @@ "tinted-schemes_2": { "flake": false, "locked": { - "lastModified": 1757716333, - "narHash": "sha256-d4km8W7w2zCUEmPAPUoLk1NlYrGODuVa3P7St+UrqkM=", + "lastModified": 1754779259, + "narHash": "sha256-8KG2lXGaXLUE0F/JVwLQe7kOVm21IDfNEo0gfga5P4M=", "owner": "tinted-theming", "repo": "schemes", - "rev": "317a5e10c35825a6c905d912e480dfe8e71c7559", + "rev": "097d751b9e3c8b97ce158e7d141e5a292545b502", "type": "github" }, "original": { @@ -12795,22 +10740,6 @@ } }, "tinted-schemes_4": { - "flake": false, - "locked": { - "lastModified": 1754779259, - "narHash": "sha256-8KG2lXGaXLUE0F/JVwLQe7kOVm21IDfNEo0gfga5P4M=", - "owner": "tinted-theming", - "repo": "schemes", - "rev": "097d751b9e3c8b97ce158e7d141e5a292545b502", - "type": "github" - }, - "original": { - "owner": "tinted-theming", - "repo": "schemes", - "type": "github" - } - }, - "tinted-schemes_5": { "flake": false, "locked": { "lastModified": 1750770351, @@ -12826,7 +10755,7 @@ "type": "github" } }, - "tinted-schemes_6": { + "tinted-schemes_5": { "flake": false, "locked": { "lastModified": 1748180480, @@ -12842,7 +10771,7 @@ "type": "github" } }, - "tinted-schemes_7": { + "tinted-schemes_6": { "flake": false, "locked": { "lastModified": 1748180480, @@ -12877,11 +10806,11 @@ "tinted-tmux_2": { "flake": false, "locked": { - "lastModified": 1757811970, - "narHash": "sha256-n5ZJgmzGZXOD9pZdAl1OnBu3PIqD+X3vEBUGbTi4JiI=", + "lastModified": 1754788770, + "narHash": "sha256-LAu5nBr7pM/jD9jwFc6/kyFY4h7Us4bZz7dvVvehuwo=", "owner": "tinted-theming", "repo": "tinted-tmux", - "rev": "d217ba31c846006e9e0ae70775b0ee0f00aa6b1e", + "rev": "fb2175accef8935f6955503ec9dd3c973eec385c", "type": "github" }, "original": { @@ -12907,22 +10836,6 @@ } }, "tinted-tmux_4": { - "flake": false, - "locked": { - "lastModified": 1754788770, - "narHash": "sha256-LAu5nBr7pM/jD9jwFc6/kyFY4h7Us4bZz7dvVvehuwo=", - "owner": "tinted-theming", - "repo": "tinted-tmux", - "rev": "fb2175accef8935f6955503ec9dd3c973eec385c", - "type": "github" - }, - "original": { - "owner": "tinted-theming", - "repo": "tinted-tmux", - "type": "github" - } - }, - "tinted-tmux_5": { "flake": false, "locked": { "lastModified": 1751159871, @@ -12938,7 +10851,7 @@ "type": "github" } }, - "tinted-tmux_6": { + "tinted-tmux_5": { "flake": false, "locked": { "lastModified": 1748740859, @@ -12954,7 +10867,7 @@ "type": "github" } }, - "tinted-tmux_7": { + "tinted-tmux_6": { "flake": false, "locked": { "lastModified": 1748740859, @@ -12989,11 +10902,11 @@ "tinted-zed_2": { "flake": false, "locked": { - "lastModified": 1757811247, - "narHash": "sha256-4EFOUyLj85NRL3OacHoLGEo0wjiRJzfsXtR4CZWAn6w=", + "lastModified": 1755613540, + "narHash": "sha256-zBFrrTxHLDMDX/OYxkCwGGbAhPXLi8FrnLhYLsSOKeY=", "owner": "tinted-theming", "repo": "base16-zed", - "rev": "824fe0aacf82b3c26690d14e8d2cedd56e18404e", + "rev": "937bada16cd3200bdbd3a2f5776fc3b686d5cba0", "type": "github" }, "original": { @@ -13021,11 +10934,11 @@ "tinted-zed_4": { "flake": false, "locked": { - "lastModified": 1755613540, - "narHash": "sha256-zBFrrTxHLDMDX/OYxkCwGGbAhPXLi8FrnLhYLsSOKeY=", + "lastModified": 1751158968, + "narHash": "sha256-ksOyv7D3SRRtebpXxgpG4TK8gZSKFc4TIZpR+C98jX8=", "owner": "tinted-theming", "repo": "base16-zed", - "rev": "937bada16cd3200bdbd3a2f5776fc3b686d5cba0", + "rev": "86a470d94204f7652b906ab0d378e4231a5b3384", "type": "github" }, "original": { @@ -13037,11 +10950,11 @@ "tinted-zed_5": { "flake": false, "locked": { - "lastModified": 1751158968, - "narHash": "sha256-ksOyv7D3SRRtebpXxgpG4TK8gZSKFc4TIZpR+C98jX8=", + "lastModified": 1725758778, + "narHash": "sha256-8P1b6mJWyYcu36WRlSVbuj575QWIFZALZMTg5ID/sM4=", "owner": "tinted-theming", "repo": "base16-zed", - "rev": "86a470d94204f7652b906ab0d378e4231a5b3384", + "rev": "122c9e5c0e6f27211361a04fae92df97940eccf9", "type": "github" }, "original": { @@ -13066,22 +10979,6 @@ "type": "github" } }, - "tinted-zed_7": { - "flake": false, - "locked": { - "lastModified": 1725758778, - "narHash": "sha256-8P1b6mJWyYcu36WRlSVbuj575QWIFZALZMTg5ID/sM4=", - "owner": "tinted-theming", - "repo": "base16-zed", - "rev": "122c9e5c0e6f27211361a04fae92df97940eccf9", - "type": "github" - }, - "original": { - "owner": "tinted-theming", - "repo": "base16-zed", - "type": "github" - } - }, "treefmt-nix": { "inputs": { "nixpkgs": [ @@ -13089,7 +10986,6 @@ "swarsel", "swarsel", "swarsel", - "swarsel", "stylix", "nur", "nixpkgs" @@ -13117,7 +11013,6 @@ "swarsel", "swarsel", "swarsel", - "swarsel", "stylix", "nur", "nixpkgs" @@ -13145,10 +11040,9 @@ "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ], - "systems": "systems_30" + "systems": "systems_25" }, "locked": { "lastModified": 1742477270, @@ -13172,10 +11066,9 @@ "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ], - "systems": "systems_33" + "systems": "systems_28" }, "locked": { "lastModified": 1742477270, @@ -13198,10 +11091,9 @@ "swarsel", "swarsel", "swarsel", - "swarsel", "nixpkgs" ], - "systems": "systems_37" + "systems": "systems_32" }, "locked": { "lastModified": 1742477270, @@ -13221,12 +11113,11 @@ "vbc-nix_4": { "inputs": { "nixpkgs": [ - "swarsel", "swarsel", "swarsel", "nixpkgs" ], - "systems": "systems_41" + "systems": "systems_36" }, "locked": { "lastModified": 1742477270, @@ -13246,11 +11137,10 @@ "vbc-nix_5": { "inputs": { "nixpkgs": [ - "swarsel", "swarsel", "nixpkgs" ], - "systems": "systems_45" + "systems": "systems_40" }, "locked": { "lastModified": 1742477270, @@ -13270,32 +11160,9 @@ "vbc-nix_6": { "inputs": { "nixpkgs": [ - "swarsel", "nixpkgs" ], - "systems": "systems_50" - }, - "locked": { - "lastModified": 1742477270, - "narHash": "sha256-u78SeVemHqEkN6J+PieL1Kymu+n7LWiTPrUXNd+uePA=", - "ref": "main", - "rev": "0525ad64e2729077ed2cf313d2022e8b8c51153f", - "revCount": 2, - "type": "git", - "url": "ssh://git@github.com/vbc-it/vbc-nix.git" - }, - "original": { - "ref": "main", - "type": "git", - "url": "ssh://git@github.com/vbc-it/vbc-nix.git" - } - }, - "vbc-nix_7": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ], - "systems": "systems_55" + "systems": "systems_45" }, "locked": { "lastModified": 1742477270, @@ -13364,23 +11231,6 @@ } }, "xwayland-satellite-stable_4": { - "flake": false, - "locked": { - "lastModified": 1755491097, - "narHash": "sha256-m+9tUfsmBeF2Gn4HWa6vSITZ4Gz1eA1F5Kh62B0N4oE=", - "owner": "Supreeeme", - "repo": "xwayland-satellite", - "rev": "388d291e82ffbc73be18169d39470f340707edaa", - "type": "github" - }, - "original": { - "owner": "Supreeeme", - "ref": "v0.7", - "repo": "xwayland-satellite", - "type": "github" - } - }, - "xwayland-satellite-stable_5": { "flake": false, "locked": { "lastModified": 1748488455, @@ -13414,22 +11264,6 @@ } }, "xwayland-satellite-unstable_2": { - "flake": false, - "locked": { - "lastModified": 1759707084, - "narHash": "sha256-0pkftKs6/LReNvxw7DVTN2AJEheZVgyeK0Aarbagi70=", - "owner": "Supreeeme", - "repo": "xwayland-satellite", - "rev": "a9188e70bd748118b4d56a529871b9de5adb9988", - "type": "github" - }, - "original": { - "owner": "Supreeeme", - "repo": "xwayland-satellite", - "type": "github" - } - }, - "xwayland-satellite-unstable_3": { "flake": false, "locked": { "lastModified": 1758577423, @@ -13445,7 +11279,7 @@ "type": "github" } }, - "xwayland-satellite-unstable_4": { + "xwayland-satellite-unstable_3": { "flake": false, "locked": { "lastModified": 1757179758, @@ -13461,7 +11295,7 @@ "type": "github" } }, - "xwayland-satellite-unstable_5": { + "xwayland-satellite-unstable_4": { "flake": false, "locked": { "lastModified": 1754533920, @@ -13479,10 +11313,10 @@ }, "zjstatus": { "inputs": { - "crane": "crane_8", - "flake-utils": "flake-utils_17", - "nixpkgs": "nixpkgs_57", - "rust-overlay": "rust-overlay_8" + "crane": "crane_7", + "flake-utils": "flake-utils_14", + "nixpkgs": "nixpkgs_49", + "rust-overlay": "rust-overlay_7" }, "locked": { "lastModified": 1750957292, @@ -13500,10 +11334,10 @@ }, "zjstatus_2": { "inputs": { - "crane": "crane_9", - "flake-utils": "flake-utils_18", - "nixpkgs": "nixpkgs_58", - "rust-overlay": "rust-overlay_9" + "crane": "crane_8", + "flake-utils": "flake-utils_15", + "nixpkgs": "nixpkgs_50", + "rust-overlay": "rust-overlay_8" }, "locked": { "lastModified": 1750957292, @@ -13521,10 +11355,10 @@ }, "zjstatus_3": { "inputs": { - "crane": "crane_10", - "flake-utils": "flake-utils_19", - "nixpkgs": "nixpkgs_60", - "rust-overlay": "rust-overlay_10" + "crane": "crane_9", + "flake-utils": "flake-utils_16", + "nixpkgs": "nixpkgs_52", + "rust-overlay": "rust-overlay_9" }, "locked": { "lastModified": 1753722377, @@ -13542,10 +11376,10 @@ }, "zjstatus_4": { "inputs": { - "crane": "crane_11", - "flake-utils": "flake-utils_20", - "nixpkgs": "nixpkgs_62", - "rust-overlay": "rust-overlay_11" + "crane": "crane_10", + "flake-utils": "flake-utils_17", + "nixpkgs": "nixpkgs_54", + "rust-overlay": "rust-overlay_10" }, "locked": { "lastModified": 1757256304, @@ -13563,10 +11397,10 @@ }, "zjstatus_5": { "inputs": { - "crane": "crane_12", - "flake-utils": "flake-utils_21", - "nixpkgs": "nixpkgs_64", - "rust-overlay": "rust-overlay_12" + "crane": "crane_11", + "flake-utils": "flake-utils_18", + "nixpkgs": "nixpkgs_56", + "rust-overlay": "rust-overlay_11" }, "locked": { "lastModified": 1757256304, @@ -13584,31 +11418,10 @@ }, "zjstatus_6": { "inputs": { - "crane": "crane_13", - "flake-utils": "flake-utils_22", - "nixpkgs": "nixpkgs_67", - "rust-overlay": "rust-overlay_13" - }, - "locked": { - "lastModified": 1757256304, - "narHash": "sha256-qANK2Hwhi4Nbpcsy6lunncyt725gthaSX/0dLluBxtw=", - "owner": "dj95", - "repo": "zjstatus", - "rev": "e2ea91819408f0b0dd7ee15249341cace6eb09cc", - "type": "github" - }, - "original": { - "owner": "dj95", - "repo": "zjstatus", - "type": "github" - } - }, - "zjstatus_7": { - "inputs": { - "crane": "crane_14", - "flake-utils": "flake-utils_23", - "nixpkgs": "nixpkgs_70", - "rust-overlay": "rust-overlay_14" + "crane": "crane_12", + "flake-utils": "flake-utils_19", + "nixpkgs": "nixpkgs_59", + "rust-overlay": "rust-overlay_12" }, "locked": { "lastModified": 1757256304, diff --git a/flake.nix b/flake.nix index 287587c..809843d 100644 --- a/flake.nix +++ b/flake.nix @@ -20,9 +20,8 @@ swarsel-modules.url = "github:Swarsel/swarsel-modules/main"; swarsel-nix.url = "github:Swarsel/swarsel-nix/main"; home-manager = { - # url = "github:nix-community/home-manager"; - # url = "github:Swarsel/home-manager/main"; - url = "github:JuneStepp/home-manager/anki-fix-booleans"; + url = "github:nix-community/home-manager"; + # url = "github:Swarsel/home-manager/module/pizauth"; inputs.nixpkgs.follows = "nixpkgs"; }; swarsel.url = "github:Swarsel/.dotfiles"; diff --git a/hosts/nixos/pyramid/hardware-configuration.nix b/hosts/nixos/pyramid/hardware-configuration.nix index 8e4d75a..8ee6c63 100644 --- a/hosts/nixos/pyramid/hardware-configuration.nix +++ b/hosts/nixos/pyramid/hardware-configuration.nix @@ -22,8 +22,8 @@ # ''; boot = { - kernelPackages = lib.mkDefault pkgs.kernel.linuxPackages; - # kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; + # kernelPackages = lib.mkDefault pkgs.kernel.linuxPackages; + kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; binfmt.emulatedSystems = [ "aarch64-linux" ]; initrd = { availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "cryptd" "usbhid" "sd_mod" "r8152" ]; @@ -39,8 +39,7 @@ kernelModules = [ "kvm-amd" ]; kernelParams = [ - # deep sleep is discontinued by amd - # "mem_sleep_default=deep" + "mem_sleep_default=deep" # supposedly, this helps save power on laptops # in reality (at least on this model), this just generate excessive heat on the CPUs # "amd_pstate=passive" diff --git a/index.html b/index.html index 28c698b..3cd10b7 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + SwarselSystems: NixOS + Emacs Configurationo @@ -443,8 +443,8 @@
  • 3.2.5.8. Hibernation
  • 3.2.5.9. BTRFS
  • 3.2.5.10. work
  • -
  • 3.2.5.11. microvm-host
  • -
  • 3.2.5.12. microvm-guest
  • +
  • 3.2.5.11. microvm-host
  • +
  • 3.2.5.12. microvm-guest
  • @@ -472,7 +472,7 @@
  • 3.3.1.12. Sourcing environment variables
  • 3.3.1.13. General Programs: bottom, imv, less, lesspipe, sioyek, bat, carapace, wlogout, swayr, yt-dlp, mpv, jq, nix-index, ripgrep, pandoc, fzf, zoxide, timidity
  • 3.3.1.14. nix-index
  • -
  • 3.3.1.15. nix-your-shell
  • +
  • 3.3.1.15. nix-your-shell
  • 3.3.1.16. password-store
  • 3.3.1.17. direnv
  • 3.3.1.18. eza
  • @@ -495,12 +495,12 @@
  • 3.3.1.31.3. Mako
  • 3.3.1.31.4. SwayOSD
  • 3.3.1.31.5. yubikey-touch-detector
  • -
  • 3.3.1.31.6. blueman-applet
  • -
  • 3.3.1.31.7. network-manager-applet
  • -
  • 3.3.1.31.8. obsidian service for tray
  • -
  • 3.3.1.31.9. anki service for tray
  • -
  • 3.3.1.31.10. element service for tray
  • -
  • 3.3.1.31.11. vesktop service for tray
  • +
  • 3.3.1.31.6. blueman-applet
  • +
  • 3.3.1.31.7. network-manager-applet
  • +
  • 3.3.1.31.8. obsidian service for tray
  • +
  • 3.3.1.31.9. anki service for tray
  • +
  • 3.3.1.31.10. element service for tray
  • +
  • 3.3.1.31.11. vesktop service for tray
  • 3.3.1.32. Sway
  • @@ -509,17 +509,17 @@
  • 3.3.1.35. gpg-agent
  • 3.3.1.36. gammastep
  • 3.3.1.37. Spicetify
  • -
  • 3.3.1.38. Obsidian
  • -
  • 3.3.1.39. Anki
  • -
  • 3.3.1.40. Element-desktop
  • -
  • 3.3.1.41. Hexchat
  • -
  • 3.3.1.42. obs-studio
  • -
  • 3.3.1.43. spotify-player
  • -
  • 3.3.1.44. vesktop
  • -
  • 3.3.1.45. batsignal
  • -
  • 3.3.1.46. autotiling
  • -
  • 3.3.1.47. swayidle
  • -
  • 3.3.1.48. swaylock
  • +
  • 3.3.1.38. Obsidian
  • +
  • 3.3.1.39. Anki
  • +
  • 3.3.1.40. Element-desktop
  • +
  • 3.3.1.41. Hexchat
  • +
  • 3.3.1.42. obs-studio
  • +
  • 3.3.1.43. spotify-player
  • +
  • 3.3.1.44. vesktop
  • +
  • 3.3.1.45. batsignal
  • +
  • 3.3.1.46. autotiling
  • +
  • 3.3.1.47. swayidle
  • +
  • 3.3.1.48. swaylock
  • 3.3.2. Server @@ -584,8 +584,7 @@
  • 3.5.31. swarsel-build
  • 3.5.32. swarsel-instantiate
  • 3.5.33. sshrm
  • -
  • 3.5.34. endme
  • -
  • 3.5.35. git-replace
  • +
  • 3.5.34. endme
  • 3.6. Profiles @@ -594,7 +593,7 @@ @@ -918,7 +917,7 @@ system-configuration-options
    ---prefix=/nix/store/x7csgsyxznfca0sn3mank9rp0xd7dh5n-emacs-git-pgtk-20251013.0 --disable-build-details --with-modules --with-pgtk --disable-gc-mark-trace --with-compress-install --with-toolkit-scroll-bars --with-native-compilation --without-imagemagick --with-mailutils --without-small-ja-dic --with-tree-sitter --without-xinput2 --without-xwidgets --with-dbus --with-selinux
    +--prefix=/nix/store/qrqw5n6fivwcqfpg83x28bj1klpgfzg8-emacs-git-pgtk-20250928.0 --disable-build-details --with-modules --with-pgtk --with-compress-install --with-toolkit-scroll-bars --with-native-compilation --without-imagemagick --with-mailutils --without-small-ja-dic --with-tree-sitter --without-xinput2 --without-xwidgets --with-dbus --with-selinux
     
    @@ -1353,9 +1352,8 @@ This provides devshell support for flake-parts
  • swarsel-modules.url = "github:Swarsel/swarsel-modules/main"; swarsel-nix.url = "github:Swarsel/swarsel-nix/main"; home-manager = { - # url = "github:nix-community/home-manager"; - # url = "github:Swarsel/home-manager/main"; - url = "github:JuneStepp/home-manager/anki-fix-booleans"; + url = "github:nix-community/home-manager"; + # url = "github:Swarsel/home-manager/module/pizauth"; inputs.nixpkgs.follows = "nixpkgs"; }; swarsel.url = "github:Swarsel/.dotfiles"; @@ -3076,8 +3074,8 @@ in # ''; boot = { - kernelPackages = lib.mkDefault pkgs.kernel.linuxPackages; - # kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; + # kernelPackages = lib.mkDefault pkgs.kernel.linuxPackages; + kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; binfmt.emulatedSystems = [ "aarch64-linux" ]; initrd = { availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "cryptd" "usbhid" "sd_mod" "r8152" ]; @@ -3093,8 +3091,7 @@ in kernelModules = [ "kvm-amd" ]; kernelParams = [ - # deep sleep is discontinued by amd - # "mem_sleep_default=deep" + "mem_sleep_default=deep" # supposedly, this helps save power on laptops # in reality (at least on this model), this just generate excessive heat on the CPUs # "amd_pstate=passive" @@ -5375,7 +5372,6 @@ We enable the use of home-manager as a NixoS module. A nice trick h useGlobalPkgs = true; useUserPackages = true; verbose = true; - backupFileExtension = "hm-bak"; users.${config.swarselsystems.mainUser}.imports = [ inputs.nix-index-database.homeModules.nix-index inputs.sops-nix.homeManagerModules.sops @@ -5900,9 +5896,6 @@ Mostly used to install some compilers and lsp's that I want to have available wh "jitsi-meet-1.0.8043" "electron-29.4.6" "SDL_ttf-2.0.11" - # audacity? - "mbedtls-2.28.10" - # "qtwebengine-5.15.19" ]; }; } @@ -11837,36 +11830,29 @@ This holds configuration that is specific to framework laptops.
    { lib, config, ... }:
    -  {
    -    options.swarselmodules.optional.hibernation = lib.mkEnableOption "optional amd gpu settings";
    -    options.swarselsystems = {
    -      hibernation = {
    -        offset = lib.mkOption {
    -          type = lib.types.int;
    -          default = 0;
    -        };
    -        resumeDevice = lib.mkOption {
    -          type = lib.types.str;
    -          default = "/dev/disk/by-label/nixos";
    -        };
    +{
    +  options.swarselmodules.optional.hibernation = lib.mkEnableOption "optional amd gpu settings";
    +  options.swarselsystems = {
    +    hibernation = {
    +      offset = lib.mkOption {
    +        type = lib.types.int;
    +        default = 0;
    +      };
    +      resumeDevice = lib.mkOption {
    +        type = lib.types.str;
    +        default = "/dev/disk/by-label/nixos";
           };
         };
    -    config = lib.mkIf config.swarselmodules.optional.hibernation {
    -      boot = {
    -        kernelParams = [
    -          "resume_offset=${builtins.toString config.swarselsystems.hibernation.offset}"
    -          # "mem_sleep_default=deep"
    -        ];
    -        inherit (config.swarselsystems.hibernation) resumeDevice;
    -      };
    -      systemd.services."systemd-suspend-then-hibernate".aliases = [ "systemd-suspend.service" ];
    -      powerManagement.enable = true;
    -      systemd.sleep.extraConfig = ''
    -        HibernateDelaySec=120m
    -        SuspendState=freeze
    -      '';
    +  };
    +  config = lib.mkIf config.swarselmodules.optional.hibernation {
    +    boot = {
    +      kernelParams = [
    +        "resume_offset=${builtins.toString config.swarselsystems.hibernation.offset}"
    +      ];
    +      inherit (config.swarselsystems.hibernation) resumeDevice;
         };
    -  }
    +  };
    +}
     
    @@ -11992,13 +11978,11 @@ in id = "VBC"; type = "wifi"; autoconnect-priority = "500"; - uuid = "3988f10e-6451-381f-9330-a12e66f45051"; secondaries = "48d09de4-0521-47d7-9bd5-43f97e23ff82"; # vpn uuid }; ipv4 = { method = "auto"; }; ipv6 = { - # addr-gen-mode = "default"; - addr-gen-mode = "stable-privacy"; + addr-gen-mode = "default"; method = "auto"; }; proxy = { }; @@ -12011,7 +11995,7 @@ in ssid = "VBC"; }; wifi-security = { - # auth-alg = "open"; + auth-alg = "open"; key-mgmt = "wpa-eap"; }; }; @@ -12041,22 +12025,20 @@ in runAsRoot = true; swtpm.enable = true; vhostUserPackages = with pkgs; [ virtiofsd ]; - # ovmf = { - # enable = true; - # packages = [ - # (pkgs.OVMFFull.override { - # secureBoot = true; - # tpmSupport = true; - # }).fd - # ]; - # }; + ovmf = { + enable = true; + packages = [ + (pkgs.OVMFFull.override { + secureBoot = true; + tpmSupport = true; + }).fd + ]; + }; }; }; }; environment.systemPackages = with pkgs; [ - remmina - # gp-onsaml-gui stable24_11.python39 qemu packer @@ -12110,7 +12092,6 @@ in }; }; - # ACTION=="remove", ENV{PRODUCT}=="3/1050/407/110", RUN+="${pkgs.kanshi}/bin/kanshictl switch laptoponly" udev.extraRules = '' # lock screen when yubikey removed ACTION=="remove", ENV{PRODUCT}=="3/1050/407/110", RUN+="${pkgs.systemd}/bin/systemctl suspend" @@ -12134,8 +12115,8 @@ in -
    -
    3.2.5.11. microvm-host
    +
    +
    3.2.5.11. microvm-host

    Some standard options that should be set for every microvm host. @@ -12161,8 +12142,8 @@ Some standard options that should be set for every microvm host.

    -
    -
    3.2.5.12. microvm-guest
    +
    +
    3.2.5.12. microvm-guest

    Some standard options that should be set vor every microvm guest. We set the default @@ -12691,7 +12672,6 @@ This is just a separate container for derivations defined in

    { lib, config, pkgs, ... }:
    -    {
    -      options.swarselmodules.programs = lib.mkEnableOption "programs settings";
    -      config = lib.mkIf config.swarselmodules.programs {
    -        programs = {
    -          bat = {
    -            enable = true;
    -            extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ];
    -          };
    -          bottom.enable = true;
    -          carapace.enable = true;
    -          fzf = {
    -            enable = true;
    -            enableBashIntegration = false;
    -            enableZshIntegration = false;
    -          };
    -          imv.enable = true;
    -          jq.enable = true;
    -          less.enable = true;
    -          lesspipe.enable = true;
    -          mpv.enable = true;
    -          pandoc.enable = true;
    -          rclone.enable = true;
    -          ripgrep.enable = true;
    -          sioyek.enable = true;
    -          swayr.enable = true;
    -          timidity.enable = true;
    -          wlogout ={
    -            enable = true;
    -            layout = [
    -              {
    -                label = "lock";
    -                action = "loginctl lock-session";
    -                text = "Lock";
    -                keybind = "l";
    -                circular = true;
    -              }
    -              {
    -                label = "hibernate";
    -                action = "systemctl hibernate";
    -                text = "Hibernate";
    -                keybind = "h";
    -                circular = true;
    -              }
    -              {
    -                label = "logout";
    -                action = "loginctl terminate-user $USER";
    -                text = "Logout";
    -                keybind = "u";
    -                circular = true;
    -              }
    -              {
    -                label = "shutdown";
    -                action = "systemctl poweroff";
    -                text = "Shutdown";
    -                keybind = "p";
    -                circular = true;
    -              }
    -              {
    -                label = "suspend";
    -                action = "systemctl suspend";
    -                text = "Suspend";
    -                keybind = "s";
    -                circular = true;
    -              }
    -              {
    -                label = "reboot";
    -                action = "systemctl reboot";
    -                text = "Reboot";
    -                keybind = "r";
    -                circular = true;
    -              }
    -            ];
    -          };
    -          yt-dlp.enable = true;
    -          zoxide = {
    -            enable = true;
    -            enableZshIntegration = true;
    -            options = [
    -              "--cmd cd"
    -            ];
    -          };
    -        };
    +{
    +  options.swarselmodules.programs = lib.mkEnableOption "programs settings";
    +  config = lib.mkIf config.swarselmodules.programs {
    +    programs = {
    +      bat = {
    +        enable = true;
    +        extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ];
           };
    -    }
    +      bottom.enable = true;
    +      carapace.enable = true;
    +      fzf = {
    +        enable = true;
    +        enableBashIntegration = false;
    +        enableZshIntegration = false;
    +      };
    +      imv.enable = true;
    +      jq.enable = true;
    +      less.enable = true;
    +      lesspipe.enable = true;
    +      mpv.enable = true;
    +      pandoc.enable = true;
    +      rclone.enable = true;
    +      ripgrep.enable = true;
    +      sioyek.enable = true;
    +      swayr.enable = true;
    +      timidity.enable = true;
    +      wlogout.enable = true;
    +      yt-dlp.enable = true;
    +      zoxide = {
    +        enable = true;
    +        enableZshIntegration = true;
    +        options = [
    +          "--cmd cd"
    +        ];
    +      };
    +    };
    +  };
    +}
     
    @@ -13232,8 +13163,8 @@ nix-index provides a way to find out which packages are provided by which deriva
    -
    -
    3.3.1.15. nix-your-shell
    +
    +
    3.3.1.15. nix-your-shell
    { lib, config, ... }:
    @@ -14946,8 +14877,8 @@ The `extraConfig` section here CANNOT be reindented. This has something to do wi
     
    -
    -
    3.3.1.31.6. blueman-applet
    +
    +
    3.3.1.31.6. blueman-applet
    { lib, config, ... }:
    @@ -14961,8 +14892,8 @@ The `extraConfig` section here CANNOT be reindented. This has something to do wi
     
    -
    -
    3.3.1.31.7. network-manager-applet
    +
    +
    3.3.1.31.7. network-manager-applet
    { lib, config, ... }:
    @@ -14977,8 +14908,8 @@ The `extraConfig` section here CANNOT be reindented. This has something to do wi
     
    -
    -
    3.3.1.31.8. obsidian service for tray
    +
    +
    3.3.1.31.8. obsidian service for tray
    { lib, config, ... }:
    @@ -15012,8 +14943,8 @@ The `extraConfig` section here CANNOT be reindented. This has something to do wi
     
    -
    -
    3.3.1.31.9. anki service for tray
    +
    +
    3.3.1.31.9. anki service for tray
    { lib, config, ... }:
    @@ -15051,8 +14982,8 @@ The `extraConfig` section here CANNOT be reindented. This has something to do wi
     
    -
    -
    3.3.1.31.10. element service for tray
    +
    +
    3.3.1.31.10. element service for tray
    { lib, config, pkgs, ... }:
    @@ -15086,8 +15017,8 @@ The `extraConfig` section here CANNOT be reindented. This has something to do wi
     
    -
    -
    3.3.1.31.11. vesktop service for tray
    +
    +
    3.3.1.31.11. vesktop service for tray
    { lib, config, pkgs, ... }:
    @@ -15380,9 +15311,10 @@ Currently, I am too lazy to explain every option here, but most of it is very se
                   { command = "sleep 60; kitty -T spotifytui -o confirm_os_window_close=0 spotify_player"; }
                 ];
                 seat = {
    -              "*" = {
    -                hide_cursor = "when-typing enable";
    -              };
    +              "*" = [
    +                { hide_cursor = "when-typing enable"; }
    +                { hide_cursor = "2000"; }
    +              ];
                 };
                 window = {
                   border = 1;
    @@ -15549,7 +15481,7 @@ Currently, I am too lazy to explain every option here, but most of it is very se
                 exec systemctl --user import-environment
                 # exec swayidle -w
     
    -            seat * hide_cursor 2000
    +            # seat * hide_cursor 2000
     
                 exec_always kill -1 $(pidof kanshi)
     
    @@ -15836,10 +15768,7 @@ Currently, I am too lazy to explain every option here, but most of it is very se
                 in
                 {
                   name = "lidopen";
    -              exec = [
    -                "${pkgs.swaybg}/bin/swaybg --output '${config.swarselsystems.sharescreen}' --image ${config.swarselsystems.wallpaper} --mode ${config.stylix.imageScalingMode}"
    -                "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/standwp.png --mode ${config.stylix.imageScalingMode}"
    -              ];
    +              exec = [ "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/standwp.png --mode ${config.stylix.imageScalingMode}" ];
                   outputs = [
                     {
                       criteria = config.swarselsystems.sharescreen;
    @@ -15985,7 +15914,7 @@ in
         programs.spicetify = {
           enable = true;
           # spotifyPackage = pkgs.stable24_11.spotify;
    -      spotifyPackage = pkgs.stable.spotify;
    +      spotifyPackage = pkgs.spotify;
           enabledExtensions = with spicePkgs.extensions; [
             fullAppDisplay
             shuffle
    @@ -16001,27 +15930,22 @@ in
     
    -
    -
    3.3.1.38. Obsidian
    +
    +
    3.3.1.38. Obsidian
    { lib, config, pkgs, nixosConfig ? config, ... }:
       let
         moduleName = "obsidian";
         inherit (nixosConfig.repo.secrets.common.obsidian) userIgnoreFilters;
    -    name = "Main";
       in
       {
         options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} with settings";
         config = lib.mkIf config.swarselmodules.${moduleName} {
    -
    -      home.file = {
    -        "${config.programs.obsidian.vaults.${name}.target}/.obsidian/app.json".force = true;
    -        "${config.programs.obsidian.vaults.${name}.target}/.obsidian/appearance.json".force = true;
    -        "${config.programs.obsidian.vaults.${name}.target}/.obsidian/core-plugins.json".force = true;
    -      };
    -
           programs.obsidian =
    +        let
    +          name = "Main";
    +        in
             {
               enable = true;
               package = pkgs.obsidian;
    @@ -16146,8 +16070,8 @@ in
     
    -
    -
    3.3.1.39. Anki
    +
    +
    3.3.1.39. Anki
    { lib, config, pkgs, globals, nixosConfig ? config, ... }:
    @@ -16168,7 +16092,7 @@ in
     
         programs.anki = {
           enable = true;
    -      # # package = pkgs.anki;
    +      package = pkgs.anki;
           hideBottomBar = true;
           hideBottomBarMode = "always";
           hideTopBar = true;
    @@ -16179,7 +16103,6 @@ in
           sync = {
             autoSync = false; # sync on profile close will delay system shutdown
             syncMedia = true;
    -        autoSyncMediaMinutes = 5;
             url = "https://${globals.services.ankisync.domain}";
             usernameFile = nixosConfig.sops.secrets.anki-user.path;
             # this is not the password but the syncKey
    @@ -16219,8 +16142,8 @@ in
     
    -
    -
    3.3.1.40. Element-desktop
    +
    +
    3.3.1.40. Element-desktop
    { lib, config, ... }:
    @@ -16256,8 +16179,8 @@ in
     
    -
    -
    3.3.1.41. Hexchat
    +
    +
    3.3.1.41. Hexchat
    { lib, config, nixosConfig ? config, ... }:
    @@ -16281,8 +16204,8 @@ in
     
    -
    -
    3.3.1.42. obs-studio
    +
    +
    3.3.1.42. obs-studio
    { lib, config, ... }:
    @@ -16302,8 +16225,8 @@ in
     
    -
    -
    3.3.1.43. spotify-player
    +
    +
    3.3.1.43. spotify-player
    { lib, config, ... }:
    @@ -16323,8 +16246,8 @@ in
     
    -
    -
    3.3.1.44. vesktop
    +
    +
    3.3.1.44. vesktop
    { lib, config, ... }:
    @@ -16410,41 +16333,29 @@ in
     
    -
    -
    3.3.1.45. batsignal
    +
    +
    3.3.1.45. batsignal
    { lib, config, ... }:
     let
       moduleName = "batsignal";
     in
    -  {
    -    options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
    -    config = lib.mkIf config.swarselmodules.${moduleName} {
    -      services.${moduleName} = {
    -        enable = true;
    -        extraArgs = [
    -          "-W"
    -          " Consider charging the battery"
    -          "-C"
    -          " Battery is low; plug in charger now"
    -          "-D"
    -          " Device will lose power in a few seconds"
    -          "-c"
    -          "10"
    -          "-d"
    -          "5"
    -        ];
    -      };
    +{
    +  options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
    +  config = lib.mkIf config.swarselmodules.${moduleName} {
    +    services.${moduleName} = {
    +      enable = true;
         };
    +  };
     
    -  }
    +}
     
    -
    -
    3.3.1.46. autotiling
    +
    +
    3.3.1.46. autotiling
    { lib, config, ... }:
    @@ -16465,8 +16376,8 @@ in
     
    -
    -
    3.3.1.47. swayidle
    +
    +
    3.3.1.47. swayidle
    { lib, config, pkgs, ... }:
    @@ -16480,7 +16391,7 @@ in
           let
             brightnessctl = "${lib.getExe pkgs.brightnessctl}";
             swaylock = "${lib.getExe pkgs.swaylock-effects}";
    -        suspend = "${pkgs.systemd}/bin/systemctl suspend";
    +        suspend = "${pkgs.systemd}/bin/systemctl";
           in
           {
             enable = true;
    @@ -16495,7 +16406,6 @@ in
             ];
             events = [
               # { event = "before-sleep"; command = "${lib.getExe pkgs.swaylock-effects} -f --screenshots --clock --effect-blur 7x5 --effect-vignette 0.5:0.5 --fade-in 0.2"; }
    -          # { event = "after-resume"; command = "${swaylock} -f "; }
               { event = "before-sleep"; command = "${swaylock} -f "; }
               { event = "lock"; command = "${swaylock} -f "; }
             ];
    @@ -16507,8 +16417,8 @@ in
     
    - -
    -
    3.6.1.3. Optionals
    +
    +
    3.6.1.3. Optionals
    { lib, config, ... }:
    @@ -24204,13 +24088,10 @@ bind gd tabdetach
     bind gD composite tabduplicate; tabdetach
     bind d composite tabprev; tabclose #
     bind D tabclose
    -bind c hint -J
    +bind c hint
     bindurl ^http(s)?://www\.google\.com c hint -Jc [class="LC20lb MBeuO DKV0Md"],[class="YmvwI"],[class="YyVfkd"],[class="fl"]
     bindurl ^http(s)?://news\.ycombinator\.com c hint -Jc [class="titleline"],[class="age"]
     bindurl ^http(s)?://lobste\.rs c hint -Jc [class="u-url"],[class="comments_label"]
    -bindurl ^http(s)?://reddit\.com c hint -Jc [class="title may-blank loggedin"],[class="bylink comments may-blank"]
    -bindurl ^http(s)?://github\.com c hint -Jc [class="Link--primary"],[class="AppHeader-button Button--secondary Button--medium Button p-0 color-fg-muted"],[class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item"],[class="prc-ActionList-ItemLabel-TmBhn"],[class="PRIVATE_TreeView-item-content-text prc-TreeView-TreeViewItemContentText-smZM-"]
    -bindurl ^http(s)?://vbc\.atlassian\.net\/wiki c hint -Jc [class="_1reo15vq _18m915vq _1bto1l2s _kqswh2mm _o5721q9c _syaz1fxt"],[class="_11c81ixg _1reo15vq _18m915vq _18s81b66 _kqswh2mm _k48p1wq8 _o5721q9c _1bto1l2s _u5f31b66"],[class="_1r04ze3t _kqswstnw"],[class="css-a61etj"],[class="jira-macro-table-underline-pdfexport"]
     bindurl ^http(s)?://www\.google\.com gi composite focusinput -l ; text.end_of_line
     
     " Work
    @@ -26993,7 +26874,7 @@ similarly, there exists an version that starts from the right.
     
    diff --git a/modules/home/common/anki.nix b/modules/home/common/anki.nix index b8e1c60..3d40308 100644 --- a/modules/home/common/anki.nix +++ b/modules/home/common/anki.nix @@ -16,7 +16,7 @@ in programs.anki = { enable = true; - # # package = pkgs.anki; + package = pkgs.anki; hideBottomBar = true; hideBottomBarMode = "always"; hideTopBar = true; @@ -27,7 +27,6 @@ in sync = { autoSync = false; # sync on profile close will delay system shutdown syncMedia = true; - autoSyncMediaMinutes = 5; url = "https://${globals.services.ankisync.domain}"; usernameFile = nixosConfig.sops.secrets.anki-user.path; # this is not the password but the syncKey diff --git a/modules/home/common/batsignal.nix b/modules/home/common/batsignal.nix index 49bf81f..30d4495 100644 --- a/modules/home/common/batsignal.nix +++ b/modules/home/common/batsignal.nix @@ -7,18 +7,6 @@ in config = lib.mkIf config.swarselmodules.${moduleName} { services.${moduleName} = { enable = true; - extraArgs = [ - "-W" - " Consider charging the battery" - "-C" - " Battery is low; plug in charger now" - "-D" - " Device will lose power in a few seconds" - "-c" - "10" - "-d" - "5" - ]; }; }; diff --git a/modules/home/common/custom-packages.nix b/modules/home/common/custom-packages.nix index 302ba29..414d24e 100644 --- a/modules/home/common/custom-packages.nix +++ b/modules/home/common/custom-packages.nix @@ -30,7 +30,6 @@ swarselzellij sshrm endme - git-replace rustdesk-vbc ]; diff --git a/modules/home/common/desktop.nix b/modules/home/common/desktop.nix index cd37b36..cf04c2a 100644 --- a/modules/home/common/desktop.nix +++ b/modules/home/common/desktop.nix @@ -55,51 +55,48 @@ }; - xdg = { - configFile."mimeapps.list".force = true; - mimeApps = { - enable = true; - defaultApplications = { + xdg.mimeApps = { + enable = true; + defaultApplications = { + "application/epub+zip" = [ "calibre-ebook-viewer.desktop" ]; + "application/metalink+xml" = [ "emacsclient.desktop" ]; + "application/msword" = [ "writer.desktop" ]; + "application/pdf" = [ "org.gnome.Evince.desktop" ]; + "application/sql" = [ "emacsclient.desktop" ]; + "application/vnd.ms-excel" = [ "calc.desktop" ]; + "application/vnd.ms-powerpoint" = [ "impress.desktop" ]; + "application/x-extension-htm" = [ "firefox.desktop" ]; + "application/x-extension-html" = [ "firefox.desktop" ]; + "application/x-extension-shtml" = [ "firefox.desktop" ]; + "application/x-extension-xht" = [ "firefox.desktop" ]; + "application/x-extension-xhtml" = [ "firefox.desktop" ]; + "application/xhtml+xml" = [ "firefox.desktop" ]; + "audio/flac" = [ "mpv.desktop" ]; + "audio/mp3" = [ "mpv.desktop" ]; + "audio/ogg" = [ "mpv.desktop" ]; + "audio/wav" = [ "mpv.desktop" ]; + "image/gif" = [ "imv.desktop" ]; + "image/jpeg" = [ "imv.desktop" ]; + "image/png" = [ "imv.desktop" ]; + "image/svg" = [ "imv.desktop" ]; + "image/vnd.adobe.photoshop" = [ "gimp.desktop" ]; + "image/vnd.dxf" = [ "org.inkscape.Inkscape.desktop" ]; + "image/webp" = [ "firefox.desktop" ]; + "text/csv" = [ "emacsclient.desktop" ]; + "text/html" = [ "firefox.desktop" ]; + "text/plain" = [ "emacsclient.desktop" ]; + "video/3gp" = [ "umpv.desktop" ]; + "video/flv" = [ "umpv.desktop" ]; + "video/mkv" = [ "umpv.desktop" ]; + "video/mp4" = [ "umpv.desktop" ]; + "x-scheme-handler/chrome" = [ "firefox.desktop" ]; + "x-scheme-handler/http" = [ "firefox.desktop" ]; + "x-scheme-handler/https" = [ "firefox.desktop" ]; + }; + associations = { + added = { + "application/x-zerosize" = [ "emacsclient.desktop" ]; "application/epub+zip" = [ "calibre-ebook-viewer.desktop" ]; - "application/metalink+xml" = [ "emacsclient.desktop" ]; - "application/msword" = [ "writer.desktop" ]; - "application/pdf" = [ "org.gnome.Evince.desktop" ]; - "application/sql" = [ "emacsclient.desktop" ]; - "application/vnd.ms-excel" = [ "calc.desktop" ]; - "application/vnd.ms-powerpoint" = [ "impress.desktop" ]; - "application/x-extension-htm" = [ "firefox.desktop" ]; - "application/x-extension-html" = [ "firefox.desktop" ]; - "application/x-extension-shtml" = [ "firefox.desktop" ]; - "application/x-extension-xht" = [ "firefox.desktop" ]; - "application/x-extension-xhtml" = [ "firefox.desktop" ]; - "application/xhtml+xml" = [ "firefox.desktop" ]; - "audio/flac" = [ "mpv.desktop" ]; - "audio/mp3" = [ "mpv.desktop" ]; - "audio/ogg" = [ "mpv.desktop" ]; - "audio/wav" = [ "mpv.desktop" ]; - "image/gif" = [ "imv.desktop" ]; - "image/jpeg" = [ "imv.desktop" ]; - "image/png" = [ "imv.desktop" ]; - "image/svg" = [ "imv.desktop" ]; - "image/vnd.adobe.photoshop" = [ "gimp.desktop" ]; - "image/vnd.dxf" = [ "org.inkscape.Inkscape.desktop" ]; - "image/webp" = [ "firefox.desktop" ]; - "text/csv" = [ "emacsclient.desktop" ]; - "text/html" = [ "firefox.desktop" ]; - "text/plain" = [ "emacsclient.desktop" ]; - "video/3gp" = [ "umpv.desktop" ]; - "video/flv" = [ "umpv.desktop" ]; - "video/mkv" = [ "umpv.desktop" ]; - "video/mp4" = [ "umpv.desktop" ]; - "x-scheme-handler/chrome" = [ "firefox.desktop" ]; - "x-scheme-handler/http" = [ "firefox.desktop" ]; - "x-scheme-handler/https" = [ "firefox.desktop" ]; - }; - associations = { - added = { - "application/x-zerosize" = [ "emacsclient.desktop" ]; - "application/epub+zip" = [ "calibre-ebook-viewer.desktop" ]; - }; }; }; }; diff --git a/modules/home/common/kanshi.nix b/modules/home/common/kanshi.nix index d2a0488..43b80b0 100644 --- a/modules/home/common/kanshi.nix +++ b/modules/home/common/kanshi.nix @@ -53,10 +53,7 @@ in { name = "lidopen"; - exec = [ - "${pkgs.swaybg}/bin/swaybg --output '${config.swarselsystems.sharescreen}' --image ${config.swarselsystems.wallpaper} --mode ${config.stylix.imageScalingMode}" - "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/standwp.png --mode ${config.stylix.imageScalingMode}" - ]; + exec = [ "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/standwp.png --mode ${config.stylix.imageScalingMode}" ]; outputs = [ { criteria = config.swarselsystems.sharescreen; diff --git a/modules/home/common/obsidian.nix b/modules/home/common/obsidian.nix index 0e2e7f4..f23d789 100644 --- a/modules/home/common/obsidian.nix +++ b/modules/home/common/obsidian.nix @@ -2,19 +2,14 @@ let moduleName = "obsidian"; inherit (nixosConfig.repo.secrets.common.obsidian) userIgnoreFilters; - name = "Main"; in { options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} with settings"; config = lib.mkIf config.swarselmodules.${moduleName} { - - home.file = { - "${config.programs.obsidian.vaults.${name}.target}/.obsidian/app.json".force = true; - "${config.programs.obsidian.vaults.${name}.target}/.obsidian/appearance.json".force = true; - "${config.programs.obsidian.vaults.${name}.target}/.obsidian/core-plugins.json".force = true; - }; - programs.obsidian = + let + name = "Main"; + in { enable = true; package = pkgs.obsidian; diff --git a/modules/home/common/packages.nix b/modules/home/common/packages.nix index b36b2c5..cfedf9d 100644 --- a/modules/home/common/packages.nix +++ b/modules/home/common/packages.nix @@ -81,8 +81,8 @@ # spotify # vesktop # discord client # nextcloud-client # enables a systemd service that I do not want - # spotify-player # element-desktop + # spotify-player nicotine-plus stable.transmission_3 diff --git a/modules/home/common/programs.nix b/modules/home/common/programs.nix index 21f0cdf..f577a87 100644 --- a/modules/home/common/programs.nix +++ b/modules/home/common/programs.nix @@ -25,53 +25,7 @@ sioyek.enable = true; swayr.enable = true; timidity.enable = true; - wlogout = { - enable = true; - layout = [ - { - label = "lock"; - action = "loginctl lock-session"; - text = "Lock"; - keybind = "l"; - circular = true; - } - { - label = "hibernate"; - action = "systemctl hibernate"; - text = "Hibernate"; - keybind = "h"; - circular = true; - } - { - label = "logout"; - action = "loginctl terminate-user $USER"; - text = "Logout"; - keybind = "u"; - circular = true; - } - { - label = "shutdown"; - action = "systemctl poweroff"; - text = "Shutdown"; - keybind = "p"; - circular = true; - } - { - label = "suspend"; - action = "systemctl suspend"; - text = "Suspend"; - keybind = "s"; - circular = true; - } - { - label = "reboot"; - action = "systemctl reboot"; - text = "Reboot"; - keybind = "r"; - circular = true; - } - ]; - }; + wlogout.enable = true; yt-dlp.enable = true; zoxide = { enable = true; diff --git a/modules/home/common/spicetify.nix b/modules/home/common/spicetify.nix index 69fab38..e043344 100644 --- a/modules/home/common/spicetify.nix +++ b/modules/home/common/spicetify.nix @@ -9,7 +9,7 @@ in programs.spicetify = { enable = true; # spotifyPackage = pkgs.stable24_11.spotify; - spotifyPackage = pkgs.stable.spotify; + spotifyPackage = pkgs.spotify; enabledExtensions = with spicePkgs.extensions; [ fullAppDisplay shuffle diff --git a/modules/home/common/swayidle.nix b/modules/home/common/swayidle.nix index 1bbcbcc..a6db8e5 100644 --- a/modules/home/common/swayidle.nix +++ b/modules/home/common/swayidle.nix @@ -9,7 +9,7 @@ in let brightnessctl = "${lib.getExe pkgs.brightnessctl}"; swaylock = "${lib.getExe pkgs.swaylock-effects}"; - suspend = "${pkgs.systemd}/bin/systemctl suspend"; + suspend = "${pkgs.systemd}/bin/systemctl"; in { enable = true; @@ -24,7 +24,6 @@ in ]; events = [ # { event = "before-sleep"; command = "${lib.getExe pkgs.swaylock-effects} -f --screenshots --clock --effect-blur 7x5 --effect-vignette 0.5:0.5 --fade-in 0.2"; } - # { event = "after-resume"; command = "${swaylock} -f "; } { event = "before-sleep"; command = "${swaylock} -f "; } { event = "lock"; command = "${swaylock} -f "; } ]; diff --git a/modules/home/optional/work.nix b/modules/home/optional/work.nix index 28c66b7..11f4a98 100644 --- a/modules/home/optional/work.nix +++ b/modules/home/optional/work.nix @@ -126,16 +126,16 @@ in awscli = { enable = true; package = pkgs.stable24_05.awscli2; - # settings = { - # "default" = { }; - # "profile s3-imagebuilder-prod" = { }; - # }; - # credentials = { - # "s3-imagebuilder-prod" = { - # aws_access_key_id = "5OYXY4879EJG9I91K1B6"; - # credential_process = "${pkgs.pass}/bin/pass show work/awscli/s3-imagebuilder-prod/secret-key"; - # }; - # }; + settings = { + "default" = { }; + "profile s3-imagebuilder-prod" = { }; + }; + credentials = { + "s3-imagebuilder-prod" = { + aws_access_key_id = "5OYXY4879EJG9I91K1B6"; + credential_process = "${pkgs.pass}/bin/pass show work/awscli/s3-imagebuilder-prod/secret-key"; + }; + }; }; git.userEmail = lib.mkForce gitMail; @@ -299,7 +299,6 @@ in profile = { name = "lidopen"; exec = [ - "${pkgs.swaybg}/bin/swaybg --output '${config.swarselsystems.sharescreen}' --image ${config.swarselsystems.wallpaper} --mode ${config.stylix.imageScalingMode}" "${pkgs.swaybg}/bin/swaybg --output 'HP Inc. HP 732pk CNC4080YL5' --image ${self}/files/wallpaper/botanicswp.png --mode ${config.stylix.imageScalingMode}" "${pkgs.swaybg}/bin/swaybg --output 'Hewlett Packard HP Z24i CN44250RDT' --image ${self}/files/wallpaper/op6wp.png --mode ${config.stylix.imageScalingMode}" ]; @@ -334,7 +333,6 @@ in { name = "lidopen"; exec = [ - "${pkgs.swaybg}/bin/swaybg --output '${config.swarselsystems.sharescreen}' --image ${config.swarselsystems.wallpaper} --mode ${config.stylix.imageScalingMode}" "${pkgs.swaybg}/bin/swaybg --output '${monitor}' --image ${self}/files/wallpaper/navidrome.png --mode ${config.stylix.imageScalingMode}" "${pkgs.kanshare}/bin/kanshare ${config.swarselsystems.sharescreen} '${monitor}'" ]; diff --git a/modules/nixos/client/packages.nix b/modules/nixos/client/packages.nix index e54af5e..153cf90 100644 --- a/modules/nixos/client/packages.nix +++ b/modules/nixos/client/packages.nix @@ -88,9 +88,6 @@ "jitsi-meet-1.0.8043" "electron-29.4.6" "SDL_ttf-2.0.11" - # audacity? - "mbedtls-2.28.10" - # "qtwebengine-5.15.19" ]; }; } diff --git a/modules/nixos/common/home-manager.nix b/modules/nixos/common/home-manager.nix index 38eea3c..4bcb21a 100644 --- a/modules/nixos/common/home-manager.nix +++ b/modules/nixos/common/home-manager.nix @@ -6,7 +6,6 @@ useGlobalPkgs = true; useUserPackages = true; verbose = true; - backupFileExtension = "hm-bak"; users.${config.swarselsystems.mainUser}.imports = [ inputs.nix-index-database.homeModules.nix-index inputs.sops-nix.homeManagerModules.sops diff --git a/modules/nixos/optional/hibernation.nix b/modules/nixos/optional/hibernation.nix index d6f0758..856b672 100644 --- a/modules/nixos/optional/hibernation.nix +++ b/modules/nixos/optional/hibernation.nix @@ -17,15 +17,8 @@ boot = { kernelParams = [ "resume_offset=${builtins.toString config.swarselsystems.hibernation.offset}" - # "mem_sleep_default=deep" ]; inherit (config.swarselsystems.hibernation) resumeDevice; }; - systemd.services."systemd-suspend-then-hibernate".aliases = [ "systemd-suspend.service" ]; - powerManagement.enable = true; - systemd.sleep.extraConfig = '' - HibernateDelaySec=120m - SuspendState=freeze - ''; }; } diff --git a/modules/nixos/optional/work.nix b/modules/nixos/optional/work.nix index bc969f8..747a9f3 100644 --- a/modules/nixos/optional/work.nix +++ b/modules/nixos/optional/work.nix @@ -94,13 +94,11 @@ in id = "VBC"; type = "wifi"; autoconnect-priority = "500"; - uuid = "3988f10e-6451-381f-9330-a12e66f45051"; secondaries = "48d09de4-0521-47d7-9bd5-43f97e23ff82"; # vpn uuid }; ipv4 = { method = "auto"; }; ipv6 = { - # addr-gen-mode = "default"; - addr-gen-mode = "stable-privacy"; + addr-gen-mode = "default"; method = "auto"; }; proxy = { }; @@ -113,7 +111,7 @@ in ssid = "VBC"; }; wifi-security = { - # auth-alg = "open"; + auth-alg = "open"; key-mgmt = "wpa-eap"; }; }; @@ -143,22 +141,20 @@ in runAsRoot = true; swtpm.enable = true; vhostUserPackages = with pkgs; [ virtiofsd ]; - # ovmf = { - # enable = true; - # packages = [ - # (pkgs.OVMFFull.override { - # secureBoot = true; - # tpmSupport = true; - # }).fd - # ]; - # }; + ovmf = { + enable = true; + packages = [ + (pkgs.OVMFFull.override { + secureBoot = true; + tpmSupport = true; + }).fd + ]; + }; }; }; }; environment.systemPackages = with pkgs; [ - remmina - # gp-onsaml-gui stable24_11.python39 qemu packer @@ -212,7 +208,6 @@ in }; }; - # ACTION=="remove", ENV{PRODUCT}=="3/1050/407/110", RUN+="${pkgs.kanshi}/bin/kanshictl switch laptoponly" udev.extraRules = '' # lock screen when yubikey removed ACTION=="remove", ENV{PRODUCT}=="3/1050/407/110", RUN+="${pkgs.systemd}/bin/systemctl suspend" diff --git a/pkgs/git-replace/default.nix b/pkgs/git-replace/default.nix deleted file mode 100644 index 7c3e4b8..0000000 --- a/pkgs/git-replace/default.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ name, writeShellApplication, git, gnugrep, findutils, ... }: - -writeShellApplication { - inherit name; - runtimeInputs = [ git gnugrep findutils ]; - text = '' - git grep -l "$1" | xargs sed -i "s/$1/$2/g" - ''; -}