this repo has no description
0
fork

Configure Feed

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

:fire: removed vicinae

+1 -77
+1 -52
flake.lock
··· 490 490 "type": "github" 491 491 } 492 492 }, 493 - "nixpkgs_9": { 494 - "locked": { 495 - "lastModified": 1762111121, 496 - "narHash": "sha256-4vhDuZ7OZaZmKKrnDpxLZZpGIJvAeMtK6FKLJYUtAdw=", 497 - "owner": "NixOS", 498 - "repo": "nixpkgs", 499 - "rev": "b3d51a0365f6695e7dd5cdf3e180604530ed33b4", 500 - "type": "github" 501 - }, 502 - "original": { 503 - "owner": "NixOS", 504 - "ref": "nixos-unstable", 505 - "repo": "nixpkgs", 506 - "type": "github" 507 - } 508 - }, 509 493 "otter-launcher": { 510 494 "inputs": { 511 495 "flake-parts": "flake-parts", ··· 535 519 "micasa": "micasa", 536 520 "niri": "niri", 537 521 "nixpkgs": "nixpkgs_7", 538 - "otter-launcher": "otter-launcher", 539 - "vicinae": "vicinae" 522 + "otter-launcher": "otter-launcher" 540 523 } 541 524 }, 542 525 "rust-analyzer-src": { ··· 598 581 "original": { 599 582 "owner": "nix-systems", 600 583 "repo": "default-linux", 601 - "type": "github" 602 - } 603 - }, 604 - "systems_4": { 605 - "locked": { 606 - "lastModified": 1681028828, 607 - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 608 - "owner": "nix-systems", 609 - "repo": "default", 610 - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 611 - "type": "github" 612 - }, 613 - "original": { 614 - "owner": "nix-systems", 615 - "repo": "default", 616 - "type": "github" 617 - } 618 - }, 619 - "vicinae": { 620 - "inputs": { 621 - "nixpkgs": "nixpkgs_9", 622 - "systems": "systems_4" 623 - }, 624 - "locked": { 625 - "lastModified": 1770672288, 626 - "narHash": "sha256-jJhGzVLu8QgMQrhZgJxRYcYwzrG+dKUdo9qWX8KBwnk=", 627 - "owner": "vicinaehq", 628 - "repo": "vicinae", 629 - "rev": "1399606ebe1e799c4c22c7fbcaeae155a6a3d6e4", 630 - "type": "github" 631 - }, 632 - "original": { 633 - "owner": "vicinaehq", 634 - "repo": "vicinae", 635 584 "type": "github" 636 585 } 637 586 },
-3
flake.nix
··· 9 9 }; 10 10 niri.url = "github:sodiboo/niri-flake"; 11 11 ags.url = "github:Aylur/ags"; 12 - vicinae.url = "github:vicinaehq/vicinae"; 13 12 fsel.url = "github:Mjoyufull/fsel"; 14 13 micasa.url = "github:cpcloud/micasa"; 15 14 otter-launcher.url = "github:kuokuo123/otter-launcher"; ··· 20 19 nixpkgs, 21 20 home-manager, 22 21 niri, 23 - vicinae, 24 22 fsel, 25 23 micasa, 26 24 ... ··· 78 76 username = users.pedro.username; 79 77 }; 80 78 modules = [ 81 - vicinae.homeManagerModules.default 82 79 ./home 83 80 ./home/personal.nix 84 81 {
-1
home/default.nix
··· 17 17 ./gtk 18 18 ./halloy 19 19 ./neovim 20 - ./vicinae 21 20 ./vscode 22 21 ./zed 23 22 ];
-21
home/vicinae/default.nix
··· 1 - { 2 - services.vicinae = { 3 - enable = true; 4 - systemd = { 5 - enable = true; 6 - autoStart = true; 7 - environment = { 8 - USE_LAYER_SHELL = 1; 9 - }; 10 - }; 11 - settings = { 12 - close_on_focus_loss = true; 13 - font.normal = "Monaspace Krypton"; 14 - theme = { 15 - dark.name = "vicinae-dark"; 16 - light.name = "vicinae-dark"; 17 - }; 18 - launcher_window.opacity = 1; 19 - }; 20 - }; 21 - }