From a141f3f8fc83018358f187165c446c91130c47af Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Wed, 18 Feb 2026 23:50:29 +0100 Subject: [PATCH 1/2] flake.nix: Rearrange inputs --- flake.nix | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/flake.nix b/flake.nix index 3667723..6706269 100644 --- a/flake.nix +++ b/flake.nix @@ -6,27 +6,13 @@ nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; - home-manager = { - url = "github:nix-community/home-manager/release-25.11"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - nixos-hardware.url = "github:NixOS/nixos-hardware/master"; - - impermanence.url = "github:nix-community/impermanence"; - - sops = { - url = "github:Mic92/sops-nix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - disko = { url = "github:nix-community/disko/latest"; inputs.nixpkgs.follows = "nixpkgs"; }; - comin = { - url = "github:nlewo/comin"; + sops = { + url = "github:Mic92/sops-nix"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -40,6 +26,14 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + # For Workstations + nixos-hardware.url = "github:NixOS/nixos-hardware/master"; + + home-manager = { + url = "github:nix-community/home-manager/release-25.11"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + vscode-extensions = { url = "github:nix-community/nix-vscode-extensions"; inputs.nixpkgs.follows = "nixpkgs"; @@ -55,6 +49,14 @@ flake = false; }; + # For Servers + impermanence.url = "github:nix-community/impermanence"; + + comin = { + url = "github:nlewo/comin"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + radicale-birthday-calendar = { url = "github:iBigQ/radicale-birthday-calendar"; flake = false; From 0b9e9aec38836018e8919319311ac2bcd68e1003 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Thu, 19 Feb 2026 00:01:19 +0100 Subject: [PATCH 2/2] justfile: Use `nixos-rebuild repl` for the repl command --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 8c2b98f..17be5b2 100644 --- a/justfile +++ b/justfile @@ -25,7 +25,7 @@ repair: [group('utility')] repl host='$(hostname)': - nix repl .#allHosts.{{ host }} + nixos-rebuild repl --flake .#{{ host }} [group('rebuild')] rebuild mode: