From 86e3af89421d66962ef9bddc339397249486906a Mon Sep 17 00:00:00 2001 From: Jo Date: Wed, 27 Aug 2025 20:34:02 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=E2=9E=95=20Update=20depe?= =?UTF-8?q?ndencies=20and=20add=20vicinae=20input=20(2025-08-27)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flake.lock | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++- flake.nix | 5 +++++ 2 files changed, 61 insertions(+), 1 deletion(-) diff --git a/flake.lock b/flake.lock index 0a16c65..b3bf9e8 100644 --- a/flake.lock +++ b/flake.lock @@ -69,6 +69,24 @@ "type": "github" } }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "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" + } + }, "home-manager": { "inputs": { "nixpkgs": [ @@ -158,7 +176,8 @@ "minegrub-theme": "minegrub-theme", "nixcord": "nixcord", "nixpkgs": "nixpkgs", - "sops-nix": "sops-nix" + "sops-nix": "sops-nix", + "vicinae": "vicinae" } }, "sops-nix": { @@ -180,6 +199,42 @@ "repo": "sops-nix", "type": "github" } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "vicinae": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1756293534, + "narHash": "sha256-O5YINKNzeHUnJ9Ky7Aaeh42NhcmF/La7rb0dddrbjyQ=", + "owner": "tomromeo", + "repo": "vicinae-nix", + "rev": "9da69cbdecb40e16d37a77e7ba39c9dfbe8f25c5", + "type": "github" + }, + "original": { + "owner": "tomromeo", + "repo": "vicinae-nix", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 972e9fd..d394a30 100644 --- a/flake.nix +++ b/flake.nix @@ -52,6 +52,11 @@ url = "github:Lxtharia/minegrub-theme"; inputs.nixpkgs.follows = "nixpkgs"; }; + + vicinae = { + url = "github:tomromeo/vicinae-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = From a95bef51b87e6302a4513b6426d65d14f0e17db6 Mon Sep 17 00:00:00 2001 From: Jo Date: Wed, 27 Aug 2025 20:34:38 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=A8=20Add=20Vicinae=20to=20home-manag?= =?UTF-8?q?er=20modules=20and=20enable=20for=20user=20jo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homes/x86_64-linux/jo/apps/vicinae/default.nix | 7 +++++++ homes/x86_64-linux/jo/default.nix | 5 +---- modules/nixos/users/default.nix | 4 +++- 3 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 homes/x86_64-linux/jo/apps/vicinae/default.nix diff --git a/homes/x86_64-linux/jo/apps/vicinae/default.nix b/homes/x86_64-linux/jo/apps/vicinae/default.nix new file mode 100644 index 0000000..266fb56 --- /dev/null +++ b/homes/x86_64-linux/jo/apps/vicinae/default.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + services.vicinae = { + enable = true; + autoStart = true; + }; +} diff --git a/homes/x86_64-linux/jo/default.nix b/homes/x86_64-linux/jo/default.nix index 00ad55d..1602e38 100644 --- a/homes/x86_64-linux/jo/default.nix +++ b/homes/x86_64-linux/jo/default.nix @@ -7,6 +7,7 @@ imports = [ ./apps/discord ./apps/firefox + ./apps/vicinae ]; puzzlevision = { @@ -33,10 +34,6 @@ path = "${config.home.homeDirectory}/.wakatime.cfg"; }; - programs.git = { - enable = true; - }; - home.packages = with pkgs; [ ## GENERAL ghostty diff --git a/modules/nixos/users/default.nix b/modules/nixos/users/default.nix index 25254af..8805864 100644 --- a/modules/nixos/users/default.nix +++ b/modules/nixos/users/default.nix @@ -99,7 +99,9 @@ in inputs.sops-nix.homeManagerModules.sops inputs.catppuccin.homeModules.default inputs.nixcord.homeModules.nixcord - ] ++ homeModules; + inputs.vicinae.homeManagerModules.default + ] + ++ homeModules; home.stateVersion = lib.mkDefault osConfig.system.stateVersion; }