a dotfile but it's really big
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

browser: try helium

+66 -3
+56 -1
flake.lock
··· 108 108 "type": "github" 109 109 } 110 110 }, 111 + "helium": { 112 + "inputs": { 113 + "nixpkgs": [ 114 + "nixpkgs" 115 + ], 116 + "utils": "utils" 117 + }, 118 + "locked": { 119 + "lastModified": 1776545703, 120 + "narHash": "sha256-+EvL6D/ENSouidMse/QdokaHUZTgyCYmW8k6xaCqImk=", 121 + "owner": "schembriaiden", 122 + "repo": "helium-browser-nix-flake", 123 + "rev": "33dfb6d7e53e5b568690ede1e0299d2fdae56868", 124 + "type": "github" 125 + }, 126 + "original": { 127 + "owner": "schembriaiden", 128 + "repo": "helium-browser-nix-flake", 129 + "type": "github" 130 + } 131 + }, 111 132 "helix": { 112 133 "inputs": { 113 134 "nixpkgs": [ ··· 359 380 "noctalia", 360 381 "nixpkgs" 361 382 ], 362 - "systems": "systems", 383 + "systems": "systems_2", 363 384 "treefmt-nix": "treefmt-nix" 364 385 }, 365 386 "locked": { ··· 404 425 "catppuccin": "catppuccin", 405 426 "easy-hosts": "easy-hosts", 406 427 "flake-parts": "flake-parts", 428 + "helium": "helium", 407 429 "helix": "helix", 408 430 "helix-plugins": "helix-plugins", 409 431 "home-manager": "home-manager", ··· 492 514 } 493 515 }, 494 516 "systems": { 517 + "locked": { 518 + "lastModified": 1681028828, 519 + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 520 + "owner": "nix-systems", 521 + "repo": "default", 522 + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 523 + "type": "github" 524 + }, 525 + "original": { 526 + "owner": "nix-systems", 527 + "repo": "default", 528 + "type": "github" 529 + } 530 + }, 531 + "systems_2": { 495 532 "locked": { 496 533 "lastModified": 1689347949, 497 534 "narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=", ··· 525 562 "original": { 526 563 "owner": "numtide", 527 564 "repo": "treefmt-nix", 565 + "type": "github" 566 + } 567 + }, 568 + "utils": { 569 + "inputs": { 570 + "systems": "systems" 571 + }, 572 + "locked": { 573 + "lastModified": 1731533236, 574 + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", 575 + "owner": "numtide", 576 + "repo": "flake-utils", 577 + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", 578 + "type": "github" 579 + }, 580 + "original": { 581 + "owner": "numtide", 582 + "repo": "flake-utils", 528 583 "type": "github" 529 584 } 530 585 },
+4
flake.nix
··· 50 50 url = "github:karitham/knixpkgs"; 51 51 inputs.nixpkgs.follows = "nixpkgs"; 52 52 }; 53 + helium = { 54 + url = "github:schembriaiden/helium-browser-nix-flake"; 55 + inputs.nixpkgs.follows = "nixpkgs"; 56 + }; 53 57 sops-nix = { 54 58 url = "github:Mic92/sops-nix"; 55 59 inputs.nixpkgs.follows = "nixpkgs";
+5 -1
modules/desktop/apps/browser.nix
··· 2 2 lib, 3 3 config, 4 4 pkgs, 5 + inputs', 5 6 ... 6 7 }: 7 8 { 8 9 config = lib.mkIf config.desktop.apps.enable { 9 10 home = { 10 - packages = [ pkgs.firefox-devedition ]; 11 + packages = [ 12 + pkgs.firefox-devedition 13 + inputs'.helium.packages.default 14 + ]; 11 15 }; 12 16 }; 13 17 }
+1 -1
modules/desktop/home.nix
··· 14 14 }; 15 15 browser.default = mkOption { 16 16 description = "default browser xdg file"; 17 - default = "firefox-devedition.desktop"; 17 + default = "helium.desktop"; 18 18 type = types.str; 19 19 }; 20 20 };