From b1367587ca72f0f771030fdbaf375b95918951b6 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 11 May 2025 20:38:53 +0200 Subject: [PATCH] Reorder stuff --- .sops.yaml | 2 +- flake.nix | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.sops.yaml b/.sops.yaml index e369d3f..4daa5f4 100644 --- a/.sops.yaml +++ b/.sops.yaml @@ -1,7 +1,7 @@ keys: # Hosts - - &cirrus age1dnpwfwh0h95r63e5qfjc2gvffw2tr2tx4new7sq2h3qs90kx9fmq322mx4 - &alto age1qz04yg4h4g22wxqca2pd5k0z574223f6m5c9jy5ny37nlgcd6u4styf06t + - &cirrus age1dnpwfwh0h95r63e5qfjc2gvffw2tr2tx4new7sq2h3qs90kx9fmq322mx4 - &fern age1sywwrwse76x8yskrsfpwk38fu2cmyx5s9qkf2pgc68cta0vj9psql7dp6e - &north age18x6herevmcuhcmeh47ll6p9ck9zk4ga6gfxwlc8yl49rwjxm7qusylwfgc diff --git a/flake.nix b/flake.nix index 9ba8be8..b42708f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,18 +1,13 @@ { inputs = { + flake-parts.url = "github:hercules-ci/flake-parts"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; - flake-parts.url = "github:hercules-ci/flake-parts"; - - deploy-rs = { - url = "github:serokell/deploy-rs"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - home-manager = { url = "github:nix-community/home-manager/release-24.11"; inputs.nixpkgs.follows = "nixpkgs"; @@ -23,13 +18,18 @@ inputs.nixpkgs.follows = "nixpkgs-unstable"; }; + sops-nix = { + url = "github:Mic92/sops-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + disko = { url = "github:nix-community/disko"; inputs.nixpkgs.follows = "nixpkgs"; }; - sops-nix = { - url = "github:Mic92/sops-nix"; + deploy-rs = { + url = "github:serokell/deploy-rs"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -69,11 +69,11 @@ systems = [ "x86_64-linux" ]; imports = [ - ./flake/hosts.nix - ./flake/modules.nix + ./flake/checks.nix ./flake/dev-shells.nix ./flake/formatter.nix - ./flake/checks.nix + ./flake/hosts.nix + ./flake/modules.nix ]; }; }